mirror of
https://github.com/RGBCube/serenity
synced 2025-05-22 10:55:07 +00:00
13 lines
348 B
Text
13 lines
348 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);
|
|
// WritableStreamDefaultWriter getWriter();
|
|
|
|
Promise<undefined> close();
|
|
};
|