UNPKG

code-monkey-ui

Version:

A Component Library for Vue 3

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