export function dispatchConnectionCountUpdate(nodeId: string, counts: Record) { const event = new CustomEvent('updateConnectionCounts', { detail: { nodeId, counts } }) window.dispatchEvent(event) }