OptionList.d.ts 394 B

12345678
  1. import type { RefOptionListProps } from 'rc-select/lib/OptionList';
  2. import type { ScrollTo } from 'rc-tree/lib/interface';
  3. import * as React from 'react';
  4. type ReviseRefOptionListProps = Omit<RefOptionListProps, 'scrollTo'> & {
  5. scrollTo: ScrollTo;
  6. };
  7. declare const RefOptionList: React.ForwardRefExoticComponent<React.RefAttributes<ReviseRefOptionListProps>>;
  8. export default RefOptionList;