mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-07 17:15:26 +00:00
13 lines
365 B
Plaintext
13 lines
365 B
Plaintext
#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);
|
|
};
|