@backblaze-labs/b2-sdk - v0.1.0
    Preparing search index...

    Interface SimulatorDownloadResponse

    Download response returned by B2Simulator.handleDownload.

    interface SimulatorDownloadResponse {
        data: Uint8Array<ArrayBufferLike> | null;
        headers: Record<string, string>;
        status: number;
    }
    Index

    Properties

    Properties

    data: Uint8Array<ArrayBufferLike> | null

    Raw file bytes, or null if the file was not found.

    headers: Record<string, string>

    B2 response headers (content type, SHA-1, file info, etc.).

    status: number

    HTTP status code.