mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-02 15:46:33 +00:00
LibWeb: Implement ReadableStreamBYOBReader constructor
This commit is contained in:
parent
2418a033d4
commit
c279d514e9
Notes:
sideshowbarker
2024-07-17 01:51:00 +09:00
Author: https://github.com/shannonbooth
Commit: c279d514e9
Pull-request: https://github.com/SerenityOS/serenity/pull/20796
Reviewed-by: https://github.com/ADKaster ✅
3 changed files with 20 additions and 2 deletions
|
@ -1,10 +1,12 @@
|
|||
#import <Streams/ReadableStream.idl>
|
||||
#import <Streams/ReadableStreamGenericReader.idl>
|
||||
|
||||
// https://streams.spec.whatwg.org/#readablestreambyobreader
|
||||
[Exposed=*]
|
||||
interface ReadableStreamBYOBReader {
|
||||
// FIXME: Implement
|
||||
// constructor(ReadableStream stream);
|
||||
constructor(ReadableStream stream);
|
||||
|
||||
// FIXME: Implement
|
||||
// Promise<ReadableStreamReadResult> read(ArrayBufferView view);
|
||||
// undefined releaseLock();
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue