denwa-web-shared
Version:
A shared library for Next.js App Router projects containing reusable components, hooks, schemas, and utilities.
11 lines (10 loc) • 325 B
TypeScript
import { FC, ReactNode } from '../../../node_modules/react';
interface InfinityListProps {
children: ReactNode;
intersectionElementClassName?: string;
isNext: boolean;
onIntersection: () => void;
intersectionElement: () => ReactNode;
}
export declare const InfinityList: FC<InfinityListProps>;
export {};