1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 20:47:45 +00:00

LibWeb: Use unsigned long long for ReadableStreamBYOBRequest.respond

Now that the IDL generator supports this :^)
This commit is contained in:
Shannon Booth 2023-12-27 21:13:46 +13:00 committed by Andreas Kling
parent e54f272024
commit 99bf986889
3 changed files with 4 additions and 4 deletions

View file

@ -3,7 +3,6 @@
interface ReadableStreamBYOBRequest {
readonly attribute ArrayBufferView? view;
// FIXME: Should be unsigned long long
undefined respond([EnforceRange] unsigned long bytesWritten);
undefined respond([EnforceRange] unsigned long long bytesWritten);
// FIXME: undefined respondWithNewView(ArrayBufferView view);
};