1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-18 21:35:06 +00:00
serenity/Userland/Libraries/LibWeb/Streams/TransformStreamDefaultController.idl
Kenneth Myhra 0091a60448 LibWeb: Add TransformStreamDefaultController scaffolding
This adds the scaffolding of TransformStreamDefaultController so we can
start implementing the necessary abstract operations for it.
2023-07-15 11:59:39 +02:00

9 lines
329 B
Text

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