mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-31 21:59:21 +00:00
14 lines
378 B
Plaintext
14 lines
378 B
Plaintext
#import <Streams/WritableStreamDefaultWriter.idl>
|
|
|
|
[Exposed=*, Transferable]
|
|
interface WritableStream {
|
|
// FIXME: optional QueuingStrategy strategy = {}
|
|
constructor(optional object underlyingSink);
|
|
|
|
readonly attribute boolean locked;
|
|
|
|
Promise<undefined> abort(optional any reason);
|
|
Promise<undefined> close();
|
|
WritableStreamDefaultWriter getWriter();
|
|
};
|