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

TransformStreamDefaultController

interface TransformStreamDefaultController <O = any> {
readonly desiredSize: number | null;
enqueue(chunk?: O): void;
error(reason?: any): void;
terminate(): void;
}
var TransformStreamDefaultController: {};

§Type Parameters

§
O = any
[src]

§Properties

§
readonly desiredSize: number | null
[src]

§Methods

§
enqueue(chunk?: O): void
[src]
§
error(reason?: any): void
[src]
§
terminate(): void
[src]