@wufengteam/wform
Version:
@wufengteam/wform
19 lines (18 loc) • 520 B
TypeScript
import type { FC } from 'react';
import './index.less';
export interface AddMemberModalprops {
visible: boolean;
onClose: () => void;
name: string;
onOk: (res: any[]) => void;
selectType: 'single' | 'multiple';
hasDesignatedMembers?: boolean;
componentId?: string;
pageId?: string;
initialValue?: any[];
getEngineApis?: any;
dependOnDepartValue?: any[];
containCurrentUserOrg: any[];
}
declare const AddMemberModal: FC<AddMemberModalprops>;
export default AddMemberModal;