MCPcopy
hub / github.com/colbymchenry/codegraph / TraversalStep

Interface TraversalStep

src/graph/traversal.ts:25–29  ·  view source on GitHub ↗

* Result of a single traversal step

Source from the content-addressed store, hash-verified

23 * Result of a single traversal step
24 */
25interface TraversalStep {
26 node: Node;
27 edge: Edge | null;
28 depth: number;
29}
30
31/**
32 * Graph traverser for BFS and DFS traversal

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected