mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 10:07:15 +02:00
10 lines
319 B
Plaintext
10 lines
319 B
Plaintext
// https://streams.spec.whatwg.org/#transformstreamdefaultcontroller
|
|
[Exposed=*]
|
|
interface TransformStreamDefaultController {
|
|
readonly attribute unrestricted double? desiredSize;
|
|
|
|
// FIXME: undefined enqueue(optional any chunk);
|
|
undefined error(optional any reason);
|
|
// FIXME: undefined terminate();
|
|
};
|