mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
10 lines
288 B
Plaintext
10 lines
288 B
Plaintext
// 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);
|
|
};
|