Interface IDownloadOptions

interface IDownloadOptions {
    contentType?: string;
    progress?: ((bytesDownloaded, totalBytes?) => void);
}

Properties

contentType?: string
progress?: ((bytesDownloaded, totalBytes?) => void)

Type declaration

    • (bytesDownloaded, totalBytes?): void
    • Parameters

      • bytesDownloaded: number
      • Optional totalBytes: number

      Returns void

Generated using TypeDoc