mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-04-25 14:14:57 +00:00
7 lines
224 B
TypeScript
7 lines
224 B
TypeScript
export function dispatchConnectionCountUpdate(nodeId: string, counts: Record<string, number>) {
|
|
const event = new CustomEvent('updateConnectionCounts', {
|
|
detail: { nodeId, counts }
|
|
})
|
|
window.dispatchEvent(event)
|
|
}
|