UNPKG

@wufengteam/wform

Version:

@wufengteam/wform

15 lines (14 loc) 397 B
import type { FC } from 'react'; interface AddMemberModalProps { visible: boolean; onCancel: () => void; onOk: (values: any[]) => void; componentId: string; pageId: string; selectType: 'single' | 'multiple'; defaultValue: any[]; $$componentItem?: any; getEngineApis?: any; } declare const AddMemberModal: FC<AddMemberModalProps>; export default AddMemberModal;