MCPcopy Index your code
hub / github.com/ShipSecAI/studio / GraphState

Interface GraphState

frontend/src/utils/graphDiff.ts:4–7  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected