summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Streams/ReadableByteStreamController.idl
blob: 27c4f4bb7211c2e10f739cbe1d572d378ee929f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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);
};