LibWeb: Implement WritableStream.close()

This commit is contained in:
Matthew Olsson 2023-04-02 08:19:10 -07:00 committed by Linus Groh
commit 5faa0014f2
Notes: sideshowbarker 2024-07-17 04:49:48 +09:00
5 changed files with 464 additions and 1 deletions

View file

@ -7,6 +7,7 @@ interface WritableStream {
// FIXME:
// Promise<undefined> abort(optional any reason);
// Promise<undefined> close();
// WritableStreamDefaultWriter getWriter();
Promise<undefined> close();
};