Interface WritableStream<W>

    This Streams API interface provides a standard abstraction for writing streaming data to a destination, known as a sink. This object comes with built-in backpressure and queuing.

    MDN Reference

    interface WritableStream<W> {
        locked: boolean;
        abort(reason?: any): Promise<void>;
        close(): Promise<void>;
        getWriter(): WritableStreamDefaultWriter<W>;
    }

    Type Parameters

    • W = any
    Hierarchy

    Properties

    Methods

    Properties

    locked: boolean

    Methods