SingleSelector.d.ts 545 B

12345678910
  1. import type { InnerSelectorProps } from './interface';
  2. import type { VueNode } from '../../_util/type';
  3. interface SelectorProps extends InnerSelectorProps {
  4. inputElement: VueNode;
  5. activeValue: string;
  6. optionLabelRender: Function;
  7. compositionStatus: boolean;
  8. }
  9. declare const SingleSelector: import("vue").DefineComponent<SelectorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SelectorProps>, {}, {}>;
  10. export default SingleSelector;