Filler.d.ts 399 B

1234567891011
  1. import type { FunctionalComponent } from 'vue';
  2. interface FillerProps {
  3. prefixCls?: string;
  4. /** Virtual filler height. Should be `count * itemMinHeight` */
  5. height: number;
  6. /** Set offset of visible items. Should be the top of start item position */
  7. offset?: number;
  8. onInnerResize?: () => void;
  9. }
  10. declare const Filter: FunctionalComponent<FillerProps>;
  11. export default Filter;