mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-21 02:22:51 +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();
|
|
};
|