1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:57:45 +00:00

LibWeb: Implement WritableStreamDefaultWriter.close()

This commit is contained in:
Matthew Olsson 2023-04-02 10:41:03 -07:00 committed by Linus Groh
parent 0c441fa7af
commit 5f4da20a56
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);
};