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

IIRFilterNode

The IIRFilterNode interface of the Web Audio API is a AudioNode processor which implements a general infinite impulse response (IIR)  filter; this type of filter can be used to implement tone control devices and graphic equalizers as well. It lets the parameters of the filter response be specified, so that it can be tuned as needed.

interface IIRFilterNode extends AudioNode {
getFrequencyResponse(
frequencyHz: Float32Array,
magResponse: Float32Array,
phaseResponse: Float32Array,
): void;
}
var IIRFilterNode: {
prototype: IIRFilterNode;
new (context: BaseAudioContext, options: IIRFilterOptions): IIRFilterNode;
}
;

§Extends

§Methods

§
getFrequencyResponse(
frequencyHz: Float32Array,
magResponse: Float32Array,
phaseResponse: Float32Array,
): void
[src]