mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 23:57:44 +00:00
LibWeb: Expose the ReadableStream tee
IDL interface
This just sets up the plumbing to the underlying ReadableStreamTee AO, which as of this commit, will just throw a NotImplemented exception.
This commit is contained in:
parent
5ccd1ff1bf
commit
d8413774df
5 changed files with 43 additions and 1 deletions
|
@ -23,7 +23,7 @@ interface ReadableStream {
|
|||
ReadableStreamReader getReader(optional ReadableStreamGetReaderOptions options = {});
|
||||
// FIXME: ReadableStream pipeThrough(ReadableWritablePair transform, optional StreamPipeOptions options = {});
|
||||
// FIXME: Promise<undefined> pipeTo(WritableStream destination, optional StreamPipeOptions options = {});
|
||||
// FIXME: sequence<ReadableStream> tee();
|
||||
sequence<ReadableStream> tee();
|
||||
|
||||
// FIXME: async iterable<any>(optional ReadableStreamIteratorOptions options = {});
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue