Newer
Older
minerva / Userland / Libraries / LibWeb / Streams / TransformStreamDefaultController.idl
@minerva minerva on 13 Jul 299 bytes Initial commit
// 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();
};