1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 18:54:57 +00:00
serenity/Userland/Libraries/LibWeb/Streams/ReadableByteStreamController.idl
2023-04-12 01:47:48 +02:00

12 lines
365 B
Text

#import <Streams/ReadableStreamBYOBRequest.idl>
[Exposed=*]
interface ReadableByteStreamController {
readonly attribute ReadableStreamBYOBRequest? byobRequest;
readonly attribute unrestricted double? desiredSize;
// FIXME: Implement
// undefined close();
// undefined enqueue(ArrayBufferView chunk);
// undefined error(optional any e);
};