mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 23:25:20 +00:00
13 lines
350 B
Plaintext
13 lines
350 B
Plaintext
[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();
|
|
};
|