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>AudioNode

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 AudioNode
implements EventTarget
import { type AudioNode } from "https://deno.land/x/windmill@v1.298.0/node_modules/evt/lib/types/lib.dom.d.ts";

A generic interface for representing an audio processing module. Examples include:

Properties

channelCount: number
channelCountMode: ChannelCountMode
channelInterpretation: ChannelInterpretation
readonly
context: BaseAudioContext
readonly
numberOfInputs: number
readonly
numberOfOutputs: number

Methods

connect(
destinationNode: AudioNode,
output?: number,
input?: number,
): AudioNode
connect(destinationParam: AudioParam, output?: number): void
disconnect(): void
disconnect(output: number): void
disconnect(destinationNode: AudioNode): void
disconnect(destinationNode: AudioNode, output: number): void
disconnect(
destinationNode: AudioNode,
output: number,
input: number,
): void
disconnect(destinationParam: AudioParam): void
disconnect(destinationParam: AudioParam, output: number): void