mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 02:37:36 +00:00
LibWeb: Add the ReadableStreamGenericReader mixin interface
This commit is contained in:
parent
f409f68a9a
commit
fe69d66a4e
9 changed files with 189 additions and 3 deletions
|
@ -0,0 +1,6 @@
|
|||
// https://streams.spec.whatwg.org/#readablestreamgenericreader
|
||||
interface mixin ReadableStreamGenericReader {
|
||||
readonly attribute Promise<undefined> closed;
|
||||
|
||||
Promise<undefined> cancel(optional any reason);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue