2023-07-07 10:49:22 -03:00
|
|
|
// https://streams.spec.whatwg.org/#transformstreamdefaultcontroller
|
|
|
|
|
[Exposed=*]
|
|
|
|
|
interface TransformStreamDefaultController {
|
|
|
|
|
readonly attribute unrestricted double? desiredSize;
|
|
|
|
|
|
2023-07-07 14:35:15 -03:00
|
|
|
undefined enqueue(optional any chunk);
|
2023-07-07 11:29:32 -03:00
|
|
|
undefined error(optional any reason);
|
2023-07-07 14:48:11 -03:00
|
|
|
undefined terminate();
|
2023-07-07 10:49:22 -03:00
|
|
|
};
|