
The AO behind this prototype was added in commit ed1076d9ca
,
so we can now trivially expose the prototype as well.
8 lines
289 B
Text
8 lines
289 B
Text
// https://streams.spec.whatwg.org/#readablestreambyobrequest
|
|
[Exposed=*]
|
|
interface ReadableStreamBYOBRequest {
|
|
readonly attribute ArrayBufferView? view;
|
|
|
|
undefined respond([EnforceRange] unsigned long long bytesWritten);
|
|
undefined respondWithNewView(ArrayBufferView view);
|
|
};
|