core
    正在准备搜索索引...

    接口 UploadFileProgress

    上传进度

    interface UploadFileProgress {
        progress: number;
        totalBytesExpectedToSend: number;
        totalBytesSent: number;
    }
    索引

    属性

    progress: number

    上传进度百分比

    totalBytesExpectedToSend: number

    预期需要上传的数据总长度,单位 Bytes

    totalBytesSent: number

    已经上传的数据长度,单位 Bytes