Preparing search index...
    interface UploadFile {
        error?: any;
        fileName?: string;
        lastModified?: number;
        lastModifiedDate?: Date;
        linkProps?: any;
        name: string;
        originFileObj?: File | Blob;
        percent?: number;
        preview?: string;
        response?: any;
        size: number;
        status?: "success" | "error" | "done" | "uploading" | "removed";
        thumbUrl?: string;
        type: string;
        uid: string;
        url?: string;
        xhr?: any;
    }
    Index

    Properties

    error?: any
    fileName?: string
    lastModified?: number
    lastModifiedDate?: Date
    linkProps?: any
    name: string
    originFileObj?: File | Blob
    percent?: number
    preview?: string
    response?: any
    size: number
    status?: "success" | "error" | "done" | "uploading" | "removed"
    thumbUrl?: string
    type: string
    uid: string
    url?: string
    xhr?: any