mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-01 03:57:15 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
12 lines
365 B
Plaintext
12 lines
365 B
Plaintext
// https://streams.spec.whatwg.org/#writablestream
|
|
[Exposed=*, Transferable]
|
|
interface WritableStream {
|
|
constructor(optional object underlyingSink, optional QueuingStrategy strategy = {});
|
|
|
|
readonly attribute boolean locked;
|
|
|
|
Promise<undefined> abort(optional any reason);
|
|
Promise<undefined> close();
|
|
WritableStreamDefaultWriter getWriter();
|
|
};
|