select.d.ts 417 B

1234567891011
  1. import type { Ref } from 'vue';
  2. import type { SelectInstance } from 'element-plus/es/components/select';
  3. import type { TreeInstance } from 'element-plus/es/components/tree';
  4. export declare const useSelect: (props: any, { attrs, emit }: {
  5. attrs: any;
  6. emit: any;
  7. }, { select, tree, key, }: {
  8. select: Ref<SelectInstance | undefined>;
  9. tree: Ref<TreeInstance | undefined>;
  10. key: Ref<string>;
  11. }) => any;