mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 21:35:06 +00:00

This adds the scaffolding of TransformStreamDefaultController so we can start implementing the necessary abstract operations for it.
9 lines
329 B
Text
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();
|
|
};
|