UNPKG

grommet

Version:

focus on the essential experience

16 lines (12 loc) 426 B
import * as React from 'react'; export interface InfiniteScrollProps { children?: React.ReactNode | Function; items?: (string | number | React.ReactElement | Record<string, any>)[]; onMore?: () => void; renderMarker?: (marker: React.ReactElement) => React.ReactElement; replace?: boolean; show?: number; step?: number; } declare const InfiniteScroll: React.FC<InfiniteScrollProps>; export { InfiniteScroll };