1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 13:17:44 +00:00

LibWeb: Use ArrayBufferView in ReadableStreamBYOBRequest

This commit is contained in:
Shannon Booth 2023-11-25 22:18:43 +13:00 committed by Andreas Kling
parent 4893dfdc57
commit a9a3dcd952
3 changed files with 8 additions and 6 deletions

View file

@ -1,8 +1,7 @@
// https://streams.spec.whatwg.org/#readablestreambyobrequest
[Exposed=*]
interface ReadableStreamBYOBRequest {
// FIXME: This should be an ArrayBufferView
readonly attribute any view;
readonly attribute ArrayBufferView? view;
// FIXME: undefined respond([EnforceRange] unsigned long long bytesWritten);
// FIXME: undefined respondWithNewView(ArrayBufferView view);