1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 10:35:09 +00:00
serenity/Userland/Libraries/LibWeb/Streams/WritableStream.idl
2023-04-06 22:54:58 +02:00

12 lines
350 B
Text

[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();
};