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

13 lines
365 B
Text
Raw Normal View History

#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);
};