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