UNPKG

@51yzone/pc-components

Version:

An enterprise-class UI design language and React-based implementation

29 lines (28 loc) 717 B
/** * 关键字:上传 * 新增人:徐友万 * 完善中 */ import React, { ReactNode } from 'react'; import { UploadFile, UploadListType } from 'antd/lib/upload/interface'; interface IProps { trigger?: ReactNode; value?: UploadFile<any>[]; maxLength?: number; request?: any; action?: string; fileName?: string; data?: any; uidResFormat?: string; uploadType?: 'default' | 'dragger'; draggerTitle?: string; draggerSubtitle?: string; listType?: UploadListType; accept?: string; prefixCls?: string; className?: string; style?: React.CSSProperties; [propName: string]: any; } declare const Component: React.FC<IProps>; export default Component;