Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/windmill/node_modules/evt/lib/types/lib.dom.d.ts>AudioParam

Windmill deno client (separated from the main repo because most of the code is auto-generated from the openapi and not worth committing)
Go to Latest
interface AudioParam
import { type AudioParam } from "https://deno.land/x/windmill@v1.298.0/node_modules/evt/lib/types/lib.dom.d.ts";

The Web Audio API's AudioParam interface represents an audio-related parameter, usually a parameter of an AudioNode (such as GainNode.gain).

Properties

automationRate: AutomationRate
readonly
defaultValue: number
readonly
maxValue: number
readonly
minValue: number
value: number

Methods

cancelAndHoldAtTime(cancelTime: number): AudioParam
cancelScheduledValues(cancelTime: number): AudioParam
exponentialRampToValueAtTime(value: number, endTime: number): AudioParam
linearRampToValueAtTime(value: number, endTime: number): AudioParam
setTargetAtTime(
target: number,
startTime: number,
timeConstant: number,
): AudioParam
setValueAtTime(value: number, startTime: number): AudioParam
setValueCurveAtTime(
values: number[] | Float32Array,
startTime: number,
duration: number,
): AudioParam