@wufengteam/wform
Version:
@wufengteam/wform
15 lines (14 loc) • 428 B
TypeScript
import type { FC } from 'react';
import type { Dept } from '../type';
import './index.less';
export interface DeptListProps {
dataSource: Dept[];
onClick: (res: Dept) => void;
selectedData?: Dept[];
onSelect?: (isIncludeSubDept: boolean, res: Dept) => void;
isIncludeSubDept?: boolean;
isEnableSelect: boolean;
enableOrgIds: any;
}
declare const DeptList: FC<DeptListProps>;
export default DeptList;