API reference

Every public class, method, and event in @codexo/exojs. Generated from source.

C

classAudioEffect

@codexo/exojs / audio / stable

Abstract base for all insertable audio effects in ExoJS. Each effect exposes stable inputNode and outputNode AudioNodes that an AudioBus or Voice connects into the Web Audio graph. Async effects (e.g., worklet-based) expose a ready promise that resolves once the effect is fully initialized.

3
props
1
methods
0
events
Import
import { AudioEffect } from '@codexo/exojs'

Abstract base for all insertable audio effects in ExoJS. Each effect exposes stable inputNode and outputNode AudioNodes that an AudioBus or Voice connects into the Web Audio graph. Async effects (e.g., worklet-based) expose a ready promise that resolves once the effect is fully initialized.

Constructors 1
new(): AudioEffect
Methods 1
destroy(): void
Properties 3
inputNode: AudioNode
outputNode: AudioNode
ready: Promise<void>
Source