@wufengteam/wform
Version:
@wufengteam/wform
17 lines (16 loc) • 448 B
TypeScript
import type { FC } from 'react';
import './index.less';
interface AddDepartModalProps {
visible: boolean;
onCancel: () => void;
onOk: (values: any[]) => void;
selectType: 'single' | 'multiple';
initialValue: any[];
getEngineApis?: any;
selectRank?: any[];
defaultDepart?: any;
settingDepart?: any;
enableOrgIds?: any[];
}
declare const AddDepartModal: FC<AddDepartModalProps>;
export default AddDepartModal;