UNPKG

@wufengteam/wform

Version:

@wufengteam/wform

11 lines (10 loc) 298 B
import type { FC } from 'react'; interface DeptTreeProps { treeData: any[]; onSearch?: (value: string) => void; initValues?: any[]; onCheck?: (values: any[]) => void; loadData?: (node: any) => Promise<void>; } declare const DeptTree: FC<DeptTreeProps>; export default DeptTree;