mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-31 13:48:25 +00:00
14 lines
403 B
Plaintext
14 lines
403 B
Plaintext
#import <Streams/QueuingStrategy.idl>
|
|
#import <Streams/WritableStreamDefaultWriter.idl>
|
|
|
|
[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();
|
|
};
|