A writable stream

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

Hierarchy (View Summary)

Implemented by

Properties

Properties

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

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