Interface toWritableStreamOptions

Options for toWritableStream.

interface toWritableStreamOptions {
    autoClose?: boolean;
}

Properties

Properties

autoClose?: boolean

If the writer is also a Closer, automatically close the writer when the stream is closed, aborted, or a write error occurs.

{true}