mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
16 lines
396 B
Plaintext
16 lines
396 B
Plaintext
#import <Streams/WritableStreamDefaultWriter.idl>
|
|
|
|
[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();
|
|
};
|