API reference
Every public class, method, and event in @codexo/exojs. Generated from source.
classBiquadEffect
Native biquad filter effect backed by a single `BiquadFilterNode` — the most common audio-shaping need, covering `lowpass` / `highpass` / `bandpass` / `notch` / `peaking` / `lowshelf` / `highshelf` / `allpass` via one `type` parameter. Insert it on an AudioBus (`bus.addEffect`) or a Voice (`voice.addEffect`). The single node serves as both inputNode and outputNode.
import { BiquadEffect } from '@codexo/exojs' Native biquad filter effect backed by a single `BiquadFilterNode` — the most common audio-shaping need, covering `lowpass` / `highpass` / `bandpass` / `notch` / `peaking` / `lowshelf` / `highshelf` / `allpass` via one `type` parameter. Insert it on an AudioBus (`bus.addEffect`) or a Voice (`voice.addEffect`).
The single node serves as both inputNode and outputNode.
new(options: BiquadEffectOptions): BiquadEffect destroy(): void detune: number frequency: number gain: number inputNode: AudioNode outputNode: AudioNode ready: Promise<void> resonance: number type: BiquadFilterType