LibWeb: Implement WritableStreamDefaultWriter.close()

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

View file

@ -9,9 +9,9 @@ interface WritableStreamDefaultWriter {
readonly attribute Promise<undefined> ready;
Promise<undefined> abort(optional any reason);
Promise<undefined> close();
// FIXME:
// Promise<undefined> close();
// undefined releaseLock();
// Promise<undefined> write(optional any chunk);
};