UNPKG

@wulperstudio/cms

Version:
14 lines (13 loc) 328 B
import { ReactNode } from 'react'; export type EntryVariant = { variant?: 'list' | 'grid'; }; export interface EntryModel extends EntryVariant { rootMargin?: string; loading?: boolean; hasNextPage?: boolean; disabled?: boolean; delayInMs?: number; onVisible?: () => void; children?: ReactNode; }