cacophony
    Preparing search index...

    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>>;
    }
    Index
    dispose?: () => void
    handle?: AudioNode
    input: AudioNode
    output: AudioNode
    params?: Readonly<Record<string, AudioParam>>