1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 03:08:13 +00:00

LibWeb: Implement ReadableByteStreamController.enqueue

This commit is contained in:
Shannon Booth 2023-12-02 21:45:40 +13:00 committed by Andreas Kling
parent feb7fbb95d
commit 48aa9fbe07
3 changed files with 23 additions and 1 deletions

View file

@ -8,5 +8,5 @@ interface ReadableByteStreamController {
undefined close();
undefined error(optional any e);
// FIXME: undefined enqueue(ArrayBufferView chunk);
undefined enqueue(ArrayBufferView chunk);
};