UNPKG

choerodon-ui

Version:

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

21 lines (20 loc) 511 B
export interface UploadFile { uid: string; size: number; name: string; filename?: string; lastModified?: string; lastModifiedDate?: Date; url?: string; status?: 'error' | 'success' | 'uploading' | 'done' | 'removed'; percent?: number; thumbUrl?: string; originFileObj?: File; response?: any; error?: any; linkProps?: any; type: string; msClose?: boolean; } export { UploadProps, } from './Upload'; export { UploadListProps, } from './UploadList';