mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 16:07:47 +00:00
LibWeb: Add TransformStreamDefaultController scaffolding
This adds the scaffolding of TransformStreamDefaultController so we can start implementing the necessary abstract operations for it.
This commit is contained in:
parent
f1d69d789b
commit
0091a60448
6 changed files with 106 additions and 0 deletions
|
@ -0,0 +1,9 @@
|
|||
// 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();
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue