2023-06-22 17:46:46 -03:00
|
|
|
#import <WebIDL/Function.idl>
|
2023-06-18 04:43:56 -03:00
|
|
|
#import <Streams/QueuingStrategyInit.idl>
|
|
|
|
|
|
|
|
|
|
// https://streams.spec.whatwg.org/#cqs-class-definition
|
|
|
|
|
[Exposed=*]
|
|
|
|
|
interface CountQueuingStrategy {
|
|
|
|
|
constructor(QueuingStrategyInit init);
|
|
|
|
|
|
|
|
|
|
readonly attribute unrestricted double highWaterMark;
|
2023-06-22 17:46:46 -03:00
|
|
|
readonly attribute Function size;
|
2023-06-18 04:43:56 -03:00
|
|
|
};
|