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