UNPKG

@wenghongtian/react-virtual-list

Version:
10 lines (9 loc) 260 B
import { ReactNode } from "react"; interface VirtualListItemProps { children: ReactNode; offsetTop: number; onUpdate: (height: number) => void; index: number; } export default function Item(props: VirtualListItemProps): JSX.Element; export {};