Interface BuiltEffectGraph

A built effect graph with distinct endpoints. input is where the previous Bus chain entry connects, and output is where the next entry connects. handle is the public AudioNode identity returned by Bus.addFilter() and exposed through Bus.filters; when omitted the bus uses input.

interface BuiltEffectGraph {
    dispose?: (() => void);
    handle?: AudioNode;
    input: AudioNode;
    output: AudioNode;
    params?: Readonly<Record<string, AudioParam>>;
}

Properties

dispose?: (() => void)

Type declaration

    • (): void
    • Returns void

handle?: AudioNode
input: AudioNode
output: AudioNode
params?: Readonly<Record<string, AudioParam>>