UNPKG

element-plus

Version:

A Component Library for Vue 3

24 lines (23 loc) 498 B
import { SelectInstance } from "../../select/src/select.js"; import { TreeInstance } from "../../tree/src/instance.js"; import { Ref } from "vue"; //#region ../../packages/components/tree-select/src/tree.d.ts declare const useTree: (props: any, { attrs, slots, emit }: { attrs: any; slots: any; emit: any; }, { select, tree, key }: { select: Ref<SelectInstance | undefined>; tree: Ref<TreeInstance | undefined>; key: Ref<string>; }) => any; //#endregion export { useTree };