UNPKG

@dfinity/gix-components

Version:
13 lines (12 loc) 396 B
import { type Snippet } from "svelte"; interface Props { onIntersect: () => Promise<void>; layout?: "list" | "grid"; disabled?: boolean; testId?: string; options?: IntersectionObserverInit; children: Snippet; } declare const InfiniteScroll: import("svelte").Component<Props, {}, "">; type InfiniteScroll = ReturnType<typeof InfiniteScroll>; export default InfiniteScroll;