A writable stream

interface IWritable {
    write: (bytes: Uint8Array<ArrayBufferLike>) => Promise<void>;
}

Hierarchy (View Summary)

Implemented by

Properties

Properties

write: (bytes: Uint8Array<ArrayBufferLike>) => Promise<void>

Write bytes to the underlying stream, resolving once the write is complete