import type { ViewportComponentAttributes } from "./types.js"; import type { VirtualizerHandle, VirtualizerProps } from "./Virtualizer.type.js"; /** * Props of {@link VList}. */ export interface VListProps extends Pick, "data" | "getKey" | "bufferSize" | "itemSize" | "ssrCount" | "shift" | "horizontal" | "children" | "onscroll" | "onscrollend" | "keepMounted" | "cache">, ViewportComponentAttributes { } /** * Methods of {@link VList}. */ export interface VListHandle extends VirtualizerHandle { }