AudioGraphSettings.onParamsApplied property

Called with every runtime parameter update as the server applies it (the param echo) — relay these to your own UI clients to keep a multi-operator surface in sync without tracking state yourself. nodeIndex matches the wire indices getGraph() reports.

Signature:

onParamsApplied?: (update: {
        nodeIndex: number;
        params: Record<string, number>;
        transitionMs?: number;
    }) => void;