grommet
Version:
focus on the essential experience
17 lines (13 loc) • 421 B
TypeScript
import * as React from "react";
export interface InfiniteScrollProps {
children?: ((...args: any[]) => any);
items?: any[];
onMore?: ((...args: any[]) => any);
renderMarker?: ((...args: any[]) => any);
replace?: boolean;
scrollableAncestor?: React.ReactNode | "window";
show?: number;
step?: number;
}
declare const InfiniteScroll: React.ComponentClass<InfiniteScrollProps>;
export { InfiniteScroll };