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

    Interface UploadWriteHandle

    Handle returned by B2Object.createWriteStream: the Web WritableStream to pipe data into, plus a promise that resolves with the finished FileVersion once the stream is closed and all parts have been uploaded.

    interface UploadWriteHandle {
        done: Promise<FileVersion>;
        writable: WritableStream<Uint8Array<ArrayBufferLike>>;
    }
    Index

    Properties

    Properties

    done: Promise<FileVersion>

    Resolves with the finalized file version when the stream closes successfully.

    writable: WritableStream<Uint8Array<ArrayBufferLike>>

    Web WritableStream sink to pipe data into.