mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-07 00:30:59 +00:00
13 lines
365 B
Text
13 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);
|
||
|
|
};
|