Newer
Older
minerva / Userland / Libraries / LibWeb / Streams / ByteLengthQueuingStrategy.idl
@minerva minerva on 13 Jul 324 bytes Initial commit
#import <WebIDL/Function.idl>
#import <Streams/QueuingStrategyInit.idl>

// https://streams.spec.whatwg.org/#blqs-class-definition
[Exposed=*]
interface ByteLengthQueuingStrategy {
    constructor(QueuingStrategyInit init);

    readonly attribute unrestricted double highWaterMark;
    readonly attribute Function size;
};