chromium/third_party/blink/renderer/core/streams/count_queuing_strategy.idl

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// https://streams.spec.whatwg.org/#cqs-class

[
    Exposed=(Window,Worker,Worklet)
] interface CountQueuingStrategy {
    [CallWith=ScriptState, MeasureAs=CountQueuingStrategyConstructor] constructor(QueuingStrategyInit init);
    readonly attribute unrestricted double highWaterMark;

    // The standard specifies "Function" but the IDL compiler doesn't like it.
    [CallWith=ScriptState] readonly attribute any size;
};