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

GainNode

A change in volume. It is an AudioNode audio-processing module that causes a given gain to be applied to the input data before its propagation to the output. A GainNode always has exactly one input and one output, both with the same number of channels.

interface GainNode extends AudioNode {
readonly gain: AudioParam;
}
var GainNode: {
prototype: GainNode;
new (context: BaseAudioContext, options?: GainOptions): GainNode;
}
;

§Extends

§Properties

§
readonly gain: AudioParam
[src]