ladybird/Userland/Libraries/LibWeb/Streams/ReadableByteStreamController.idl

13 lines
360 B
Text

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