mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 10:35:09 +00:00
12 lines
350 B
Text
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();
|
|
};
|