@wufengteam/wform
Version:
@wufengteam/wform
23 lines (22 loc) • 628 B
TypeScript
import React from 'react';
import type { FC } from 'react';
import type { AttachmentFile } from './type';
export interface AttachmentsProps {
label: string;
name: string;
attachments: AttachmentFile[];
fieldDes?: string;
fieldAttr?: string[];
fieldName: string;
$$componentItem: {
platform: 'h5' | 'pc';
Field?: FC<any>;
[key: string]: any;
};
status?: string;
basicStatus?: string;
visible?: boolean;
getEngineApis?: any;
}
declare const _default: React.ForwardRefExoticComponent<Omit<any, "ref"> & React.RefAttributes<unknown>>;
export default _default;