mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 21:17:45 +00:00
LibWeb: Implement WritableStream.getWriter()
This commit is contained in:
parent
f358ae1b13
commit
ae2d67c28b
5 changed files with 27 additions and 1 deletions
|
@ -1,3 +1,5 @@
|
|||
#import <Streams/WritableStreamDefaultWriter.idl>
|
||||
|
||||
[Exposed=*, Transferable]
|
||||
interface WritableStream {
|
||||
// FIXME: optional QueuingStrategy strategy = {}
|
||||
|
@ -7,7 +9,7 @@ interface WritableStream {
|
|||
|
||||
// FIXME:
|
||||
// Promise<undefined> abort(optional any reason);
|
||||
// WritableStreamDefaultWriter getWriter();
|
||||
|
||||
Promise<undefined> close();
|
||||
WritableStreamDefaultWriter getWriter();
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue