1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-24 22:47:44 +00:00
serenity/Userland/Libraries/LibWeb/Streams/CountQueuingStrategy.idl

11 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;
};