OptionList.d.ts 758 B

12345678910111213
  1. import type { ScrollConfig } from '../vc-virtual-list/List';
  2. export interface RefOptionListProps {
  3. onKeydown: (e?: KeyboardEvent) => void;
  4. onKeyup: (e?: KeyboardEvent) => void;
  5. scrollTo?: (index: number | ScrollConfig) => void;
  6. }
  7. export type OptionListProps = Record<string, never>;
  8. /**
  9. * Using virtual list of option display.
  10. * Will fallback to dom if use customize render.
  11. */
  12. declare const OptionList: import("vue").DefineComponent<{}, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
  13. export default OptionList;