mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-27 03:37:53 +00:00
10 lines
345 B
Plaintext
10 lines
345 B
Plaintext
// https://streams.spec.whatwg.org/#readablestreambyobrequest
|
|
[Exposed=*]
|
|
interface ReadableStreamBYOBRequest {
|
|
// FIXME: This should be an ArrayBufferView
|
|
readonly attribute any? view;
|
|
|
|
// FIXME: undefined respond([EnforceRange] unsigned long long bytesWritten);
|
|
// FIXME: undefined respondWithNewView(ArrayBufferView view);
|
|
};
|