| 2 | import type { FrontendNodeData } from '@/schemas/node'; |
| 3 | |
| 4 | interface GraphState { |
| 5 | nodes: Node<FrontendNodeData>[]; |
| 6 | edges: Edge[]; |
| 7 | } |
| 8 | |
| 9 | const areObjectsEqual = (a: any, b: any) => JSON.stringify(a) === JSON.stringify(b); |
| 10 |
nothing calls this directly
no outgoing calls
no test coverage detected