@wufengteam/wform
Version:
@wufengteam/wform
11 lines (10 loc) • 334 B
TypeScript
import type { FC } from 'react';
interface DeptTreeProps {
treeData: any[];
onSelect?: (value: string[], checkAll: boolean) => void;
selectedKeys?: string[];
loadData?: (node: any) => Promise<void>;
onCheckChange?: (checkAll: boolean) => void;
}
declare const DeptTree: FC<DeptTreeProps>;
export default DeptTree;