1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 06:47:34 +00:00

LibWeb: Implement WritableStreamDefaultWriter.write()

This commit is contained in:
Matthew Olsson 2023-04-09 15:21:58 -07:00 committed by Linus Groh
parent 48b67e41f0
commit 58f3009faa
5 changed files with 163 additions and 3 deletions

View file

@ -11,7 +11,5 @@ interface WritableStreamDefaultWriter {
Promise<undefined> abort(optional any reason);
Promise<undefined> close();
undefined releaseLock();
// FIXME:
// Promise<undefined> write(optional any chunk);
Promise<undefined> write(optional any chunk);
};