mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 17:10:23 +00:00
11 lines
324 B
Text
11 lines
324 B
Text
#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;
|
|
};
|