1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2026-01-17 09:21:01 +00:00
serenity/Userland/Libraries/LibWeb/Streams/ByteLengthQueuingStrategy.idl

11 lines
305 B
Text

#import <Streams/QueuingStrategyInit.idl>
// https://streams.spec.whatwg.org/#blqs-class-definition
[Exposed=*]
interface ByteLengthQueuingStrategy {
constructor(QueuingStrategyInit init);
readonly attribute unrestricted double highWaterMark;
// FIXME: readonly attribute Function size;
};