Files
low-code-react-app-b/src/components/FeatureIdeaCloud/dispatchConnectionCountUpdate.ts

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)
}