@dfinity/gix-components
Version:
A UI kit developed by the GIX team
13 lines (12 loc) • 396 B
TypeScript
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;