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

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

// https://webaudio.github.io/web-audio-api/#ConstantSourceNode
[
    Exposed=Window,
    ActiveScriptWrappable
] interface ConstantSourceNode : AudioScheduledSourceNode {
    [RaisesException, Measure] constructor(BaseAudioContext context, optional ConstantSourceOptions options = {});
    readonly attribute AudioParam offset;
};