chromium/third_party/blink/renderer/modules/webaudio/audio_param_descriptor.idl

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

// See: https://webaudio.github.io/web-audio-api/#dictdef-audioparamdescriptor
dictionary AudioParamDescriptor {
    required DOMString name;
    float defaultValue = 0;
    float minValue = -3.4028235e38;
    float maxValue = 3.4028235e38;
    AutomationRate automationRate = "a-rate";
};