@wufengteam/wform
Version:
@wufengteam/wform
15 lines (14 loc) • 417 B
TypeScript
import type { FC } from 'react';
import './index.less';
interface AddMemberByDeptModalProps {
visible: boolean;
onCancel: () => void;
onOk: (values: any[]) => void;
componentId: string;
pageId: string;
selectType: 'single' | 'multiple';
defaultValue: any[];
getEngineApis?: any;
}
declare const AddMemberByDeptModal: FC<AddMemberByDeptModalProps>;
export default AddMemberByDeptModal;