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

    接口 DownloadFileProgress

    下载进度

    interface DownloadFileProgress {
        progress: number;
        totalBytesExpectedToWrite: number;
        totalBytesWritten: number;
    }
    索引

    属性

    progress: number

    下载进度百分比

    totalBytesExpectedToWrite: number

    预期需要下载的数据总长度,单位 Bytes

    totalBytesWritten: number

    已经下载的数据长度,单位 Bytes