mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
12 lines
318 B
Plaintext
12 lines
318 B
Plaintext
#import <WebIDL/Function.idl>
|
|
#import <Streams/QueuingStrategyInit.idl>
|
|
|
|
// https://streams.spec.whatwg.org/#cqs-class-definition
|
|
[Exposed=*]
|
|
interface CountQueuingStrategy {
|
|
constructor(QueuingStrategyInit init);
|
|
|
|
readonly attribute unrestricted double highWaterMark;
|
|
readonly attribute Function size;
|
|
};
|