UNPKG

@wufengteam/wform

Version:

@wufengteam/wform

27 lines (26 loc) 550 B
import type { FC } from 'react'; import type { SubFormField, SubFormData } from '../type'; interface ImportDataProps { /** * 是否展示组件包裹的内容 */ subFormFields?: SubFormField[]; /** * 表单页面ID */ pageId: string; /** * 应用ID */ appId: string; /** * 导入成功回调 */ onSuccess?: (result: SubFormData[]) => void; /** * 引擎能力 */ customEngineApi: any; } declare const ImportData: FC<ImportDataProps>; export default ImportData;