1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:17:34 +00:00

LibWeb: Implement ReadableByteStreamController.close()

This commit is contained in:
Matthew Olsson 2023-04-09 10:40:15 -07:00 committed by Andreas Kling
parent ef3810d03d
commit c9be755367
5 changed files with 71 additions and 1 deletions

View file

@ -5,8 +5,9 @@ interface ReadableByteStreamController {
readonly attribute ReadableStreamBYOBRequest? byobRequest;
readonly attribute unrestricted double? desiredSize;
undefined close();
// FIXME: Implement
// undefined close();
// undefined enqueue(ArrayBufferView chunk);
// undefined error(optional any e);
};