bigbuffet-rw/app/soapbox/features/timeline-insertion/index.ts

11 lines
293 B
TypeScript
Raw Normal View History

import { abovefoldAlgorithm } from './abovefold';
import { linearAlgorithm } from './linear';
import type { PickAlgorithm } from './types';
const ALGORITHMS: Record<any, PickAlgorithm | undefined> = {
'linear': linearAlgorithm,
'abovefold': abovefoldAlgorithm,
};
export { ALGORITHMS };