mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-01 03:47:48 +02: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);
|
|
};
|