UNPKG

@wufengteam/wform

Version:

@wufengteam/wform

18 lines (17 loc) 451 B
import type { FC } from 'react'; import './index.less'; interface AddDeptModalProps { visible: boolean; onClose: () => void; name: string; onOk: (res: any[]) => void; selectType: 'single' | 'multiple'; initialValue?: any[]; getEngineApis?: any; defaultDepart?: any; settingDepart?: any; selectRank?: any; enableOrgIds?: any; } declare const AddDeptModal: FC<AddDeptModalProps>; export default AddDeptModal;