UNPKG

virtua

Version:

A zero-config, fast and small (~3kB) virtual list (and grid) component for React, Vue, Solid and Svelte.

10 lines (9 loc) 201 B
import { CSSProperties } from "vue"; export type ItemProps = (payload: { item: any; index: number; }) => { [key: string]: any; style?: CSSProperties; class?: string; } | undefined;