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