UNPKG

@wufengteam/wform

Version:

@wufengteam/wform

15 lines (14 loc) 441 B
import type { FC } from 'react'; import type { UploadProps } from 'antd/lib/upload/interface'; interface InnerUploadGroupProps { value?: any; onChange?: (value: any) => void; } interface UploadGroupProps extends UploadProps { sort?: string; inputVerify?: any; $$componentItem?: any; getEngineApis?: any; } declare const CheckUploadGroup: FC<UploadGroupProps & InnerUploadGroupProps>; export default CheckUploadGroup;