W3cubDocs

/Deno

WritableStream

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.

interface WritableStream <W = any> {
readonly locked: boolean;
abort(reason?: any): Promise<void>;
getWriter(): WritableStreamDefaultWriter<W>;
}
var WritableStream: {
prototype: WritableStream;
new <W = any>(underlyingSink?: UnderlyingSink<W>, strategy?: QueuingStrategy<W>): WritableStream<W>;
}
;

Type Parameters

W = any

Properties

readonly locked: boolean

Methods

abort(reason?: any): Promise<void>

© 2018–2021 the Deno authors
https://doc.deno.land/deno/stable/~/WritableStream