Package version:

Type Alias BlobDownloadResponseInternal

BlobDownloadResponseInternal: BlobDownloadHeaders & {
    blobBody?: Promise<Blob>;
    readableStreamBody?: PollOperationState;
}

Contains response data for the download operation (internal). This is a redefined version that uses NodeJSReadableStream instead of NodeJS.ReadableStream.

Type declaration

  • OptionalblobBody?: Promise<Blob>

    BROWSER ONLY

    The response body as a browser Blob. Always undefined in node.js.

  • OptionalreadableStreamBody?: PollOperationState

    NODEJS ONLY

    The response body as a node.js Readable stream. Always undefined in the browser.