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

LibWeb: Add ReadableStreamBYOBReader interface

This commit is contained in:
Matthew Olsson 2023-04-08 12:01:49 -07:00 committed by Andreas Kling
parent 2b269d4a49
commit e8ad571082
6 changed files with 93 additions and 0 deletions

View file

@ -0,0 +1,11 @@
#import <Streams/ReadableStreamGenericReader.idl>
[Exposed=*]
interface ReadableStreamBYOBReader {
// FIXME: Implement
// constructor(ReadableStream stream);
// Promise<ReadableStreamReadResult> read(ArrayBufferView view);
// undefined releaseLock();
};
ReadableStreamBYOBReader includes ReadableStreamGenericReader;