props.ts 433 B

12345678910111213141516171819
  1. import type { ClListViewItem, PassThroughProps } from "../../types";
  2. export type ClListViewPassThrough = {
  3. className?: string;
  4. item?: PassThroughProps;
  5. indexBar?: PassThroughProps;
  6. };
  7. export type ClListViewProps = {
  8. className?: string;
  9. pt?: ClListViewPassThrough;
  10. data?: ClListViewItem[];
  11. itemHeight?: number;
  12. headerHeight?: number;
  13. topHeight?: number;
  14. bottomHeight?: number;
  15. bufferSize?: number;
  16. virtual?: boolean;
  17. };