mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 08:36:15 +00:00
12 lines
299 B
Plaintext
12 lines
299 B
Plaintext
#import <Streams/QueuingStrategyInit.idl>
|
|
|
|
// https://streams.spec.whatwg.org/#cqs-class-definition
|
|
[Exposed=*]
|
|
interface CountQueuingStrategy {
|
|
constructor(QueuingStrategyInit init);
|
|
|
|
readonly attribute unrestricted double highWaterMark;
|
|
|
|
// FIXME: readonly attribute Function size;
|
|
};
|