@electron/get
    Preparing search index...

    Type Alias FetchDownloaderOptions

    FetchDownloaderOptions: RequestInit & {
        getProgressCallback?: (progress: Progress) => Promise<void>;
        quiet?: boolean;
    }

    Type Declaration

    • OptionalgetProgressCallback?: (progress: Progress) => Promise<void>

      Called on each chunk with the current download Progress.

    • Optionalquiet?: boolean

      Disables the console progress bar. Setting the ELECTRON_GET_NO_PROGRESS environment variable to a non-empty value also does this.

    RequestInit for possible keys/values.