ladybird/Userland/Libraries/LibWeb/Streams/TransformStreamDefaultController.idl

10 lines
309 B
Text
Raw Normal View History

// https://streams.spec.whatwg.org/#transformstreamdefaultcontroller
[Exposed=*]
interface TransformStreamDefaultController {
readonly attribute unrestricted double? desiredSize;
undefined enqueue(optional any chunk);
undefined error(optional any reason);
// FIXME: undefined terminate();
};