13 lines
378 B
Text
13 lines
378 B
Text
#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();
|
|
};
|