UNPKG

code-monkey-ui

Version:

A Component Library for Vue 3

12 lines (11 loc) 418 B
import ElSelect from 'code-monkey-ui/es/components/select'; import type { Ref } from 'vue'; import type ElTree from 'code-monkey-ui/es/components/tree'; export declare const useSelect: (props: any, { attrs, emit }: { attrs: any; emit: any; }, { tree, key, }: { select: Ref<InstanceType<typeof ElSelect> | undefined>; tree: Ref<InstanceType<typeof ElTree> | undefined>; key: Ref<string>; }) => any;