select.d.ts 422 B

1234567891011
  1. import ElSelect from 'element-plus/es/components/select';
  2. import type { Ref } from 'vue';
  3. import type ElTree 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<InstanceType<typeof ElSelect> | undefined>;
  9. tree: Ref<InstanceType<typeof ElTree> | undefined>;
  10. key: Ref<string>;
  11. }) => any;