Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AudioDestinationNode

AudioDestinationNode has no output (as it is the output, no more AudioNode can be linked after it in the audio graph) and one input. The number of channels in the input must be between 0 and the maxChannelCount value or an exception is raised.

interface AudioDestinationNode extends AudioNode {
readonly maxChannelCount: number;
}
var AudioDestinationNode: {};

§Extends

§Properties

§
readonly maxChannelCount: number
[src]