UNPKG

@wufengteam/wform

Version:

@wufengteam/wform

19 lines (18 loc) 523 B
import type { FC } from 'react'; import './index.less'; interface MobileAddMemberModalprops { visible: boolean; onClose: () => void; name: string; onOk: (res: any[]) => void; selectType: 'single' | 'multiple'; hasDefault?: boolean; compType?: 'depart' | 'member'; componentId?: string; pageId?: string; defaultValue?: any[]; $$componentItem?: any; getEngineApis?: any; } declare const MobileAddMemberModal: FC<MobileAddMemberModalprops>; export default MobileAddMemberModal;