interface UploadFile<T> {
    aria-label?: string;
    aria-labelledby?: string;
    crossOrigin?: CrossOrigin;
    error?: any;
    fileName?: string;
    lastModified?: number;
    lastModifiedDate?: Date;
    linkProps?: any;
    name: string;
    originFileObj?: RcFile;
    percent?: number;
    preview?: string;
    response?: T;
    size?: number;
    status?: UploadFileStatus;
    thumbUrl?: string;
    type?: string;
    uid: string;
    url?: string;
    xhr?: T;
}

Type Parameters

  • T = any

Hierarchy

  • ProgressAriaProps
    • UploadFile

Properties

aria-label?: string

Defines a string value that labels the current element.

See

aria-labelledby.

aria-labelledby?: string

Identifies the element (or elements) that labels the current element.

See

aria-describedby.

crossOrigin?: CrossOrigin
error?: any
fileName?: string
lastModified?: number
lastModifiedDate?: Date
linkProps?: any
name: string
originFileObj?: RcFile
percent?: number
preview?: string
response?: T
size?: number
status?: UploadFileStatus
thumbUrl?: string
type?: string
uid: string
url?: string
xhr?: T

Generated using TypeDoc