mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 19:57:44 +00:00
LibWeb: Add the WritableStream interface
This commit is contained in:
parent
78feba401d
commit
e93560b769
10 changed files with 311 additions and 0 deletions
12
Userland/Libraries/LibWeb/Streams/WritableStream.idl
Normal file
12
Userland/Libraries/LibWeb/Streams/WritableStream.idl
Normal file
|
@ -0,0 +1,12 @@
|
|||
[Exposed=*, Transferable]
|
||||
interface WritableStream {
|
||||
// FIXME: optional QueuingStrategy strategy = {}
|
||||
constructor(optional object underlyingSink);
|
||||
|
||||
readonly attribute boolean locked;
|
||||
|
||||
// FIXME:
|
||||
// Promise<undefined> abort(optional any reason);
|
||||
// Promise<undefined> close();
|
||||
// WritableStreamDefaultWriter getWriter();
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue