mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 11:17:44 +00:00
LibWeb: Add ReadableStreamDefaultController
This commit is contained in:
parent
f99d6e177f
commit
bc9919178e
10 changed files with 656 additions and 11 deletions
|
@ -0,0 +1,9 @@
|
|||
// https://streams.spec.whatwg.org/#readablestreamdefaultcontroller
|
||||
[Exposed=*]
|
||||
interface ReadableStreamDefaultController {
|
||||
readonly attribute unrestricted double? desiredSize;
|
||||
|
||||
undefined close();
|
||||
undefined enqueue(optional any chunk);
|
||||
undefined error(optional any e);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue