mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 19:29:16 +00:00
7 lines
216 B
Plaintext
7 lines
216 B
Plaintext
// https://streams.spec.whatwg.org/#readablestreamgenericreader
|
|
interface mixin ReadableStreamGenericReader {
|
|
readonly attribute Promise<undefined> closed;
|
|
|
|
Promise<undefined> cancel(optional any reason);
|
|
};
|