Newer
Older
minerva / Userland / Libraries / LibWeb / Streams / CountQueuingStrategy.idl
@minerva minerva on 13 Jul 318 bytes Initial commit
#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;
};