| 12345678910111213141516171819 |
- import type { ClListViewItem, PassThroughProps } from "../../types";
- export type ClListViewPassThrough = {
- className?: string;
- item?: PassThroughProps;
- indexBar?: PassThroughProps;
- };
- export type ClListViewProps = {
- className?: string;
- pt?: ClListViewPassThrough;
- data?: ClListViewItem[];
- itemHeight?: number;
- headerHeight?: number;
- topHeight?: number;
- bottomHeight?: number;
- bufferSize?: number;
- virtual?: boolean;
- };
|