mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
12 lines
299 B
Text
12 lines
299 B
Text
|
|
#import <Streams/QueuingStrategyInit.idl>
|
||
|
|
|
||
|
|
// https://streams.spec.whatwg.org/#cqs-class-definition
|
||
|
|
[Exposed=*]
|
||
|
|
interface CountQueuingStrategy {
|
||
|
|
constructor(QueuingStrategyInit init);
|
||
|
|
|
||
|
|
readonly attribute unrestricted double highWaterMark;
|
||
|
|
|
||
|
|
// FIXME: readonly attribute Function size;
|
||
|
|
};
|