@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
14 lines (13 loc) • 328 B
TypeScript
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;
}