mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-27 19:59:17 +00:00
14 lines
360 B
Plaintext
14 lines
360 B
Plaintext
#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);
|
|
};
|