#import // https://streams.spec.whatwg.org/#writablestreamdefaultwriter [Exposed=*] interface WritableStreamDefaultWriter { constructor(WritableStream stream); readonly attribute Promise closed; readonly attribute unrestricted double? desiredSize; readonly attribute Promise ready; Promise abort(optional any reason); Promise close(); undefined releaseLock(); Promise write(optional any chunk); };