Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

WritableStreamDefaultController

This Streams API interface represents a controller allowing control of a WritableStream's state. When constructing a WritableStream, the underlying sink is given a corresponding WritableStreamDefaultController instance to manipulate.

interface WritableStreamDefaultController {
readonly signal: AbortSignal;
error(e?: any): void;
}
var WritableStreamDefaultController: {};

§Properties

§
readonly signal: AbortSignal
[src]

§Methods

§
error(e?: any): void
[src]