mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-05 16:14:38 +00: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();
|
|
};
|