@lzwme/fe-utils
    Preparing search index...

    Interface DownloadResult

    interface DownloadResult {
        errmsg?: string;
        filepath: string;
        isExist: boolean;
        size: number;
    }
    Index

    Properties

    errmsg?: string

    下载失败原因

    filepath: string

    文件下载保存的路径

    isExist: boolean

    文件是否已存在(没有从网络下载)

    size: number

    文件总大小