mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 04:24:59 +00:00
9 lines
293 B
Text
9 lines
293 B
Text
[Exposed=*]
|
|
interface ReadableStreamBYOBRequest {
|
|
// FIXME: This should be an ArrayBufferView
|
|
readonly attribute any? view;
|
|
|
|
// FIXME: Implement
|
|
// undefined respond([EnforceRange] unsigned long long bytesWritten);
|
|
// undefined respondWithNewView(ArrayBufferView view);
|
|
};
|