blob: 71def453291e565cfaea158452f80128fca16b62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#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);
};
|