2023-06-22 17:49:12 -03:00
|
|
|
#import <WebIDL/Function.idl>
|
2023-06-18 05:26:19 -03:00
|
|
|
#import <Streams/QueuingStrategyInit.idl>
|
|
|
|
|
|
|
|
|
|
// https://streams.spec.whatwg.org/#blqs-class-definition
|
|
|
|
|
[Exposed=*]
|
|
|
|
|
interface ByteLengthQueuingStrategy {
|
|
|
|
|
constructor(QueuingStrategyInit init);
|
|
|
|
|
|
|
|
|
|
readonly attribute unrestricted double highWaterMark;
|
2023-06-22 17:49:12 -03:00
|
|
|
readonly attribute Function size;
|
2023-06-18 05:26:19 -03:00
|
|
|
};
|