@electron/get
    Preparing search index...

    Interface Progress

    interface Progress {
        percent: number;
        total: number | null;
        transferred: number;
    }
    Index

    Properties

    percent: number

    Ratio of transferred to total between 0 and 1. If total is unknown, this is 0 until the download completes, then 1.

    total: number | null

    Total bytes to download, or null if the response had no Content-Length header.

    transferred: number

    Bytes downloaded so far.