* Interface for tracking edges that need updating when a node ID changes
| 47 | * Interface for tracking edges that need updating when a node ID changes |
| 48 | */ |
| 49 | interface EdgeToUpdate { |
| 50 | originalDynamicId: string |
| 51 | newEdgeId: string |
| 52 | edgeIndex: number |
| 53 | } |
| 54 | |
| 55 | export class RawGraph { |
| 56 | nodes: RawNodeType[] = [] |
nothing calls this directly
no outgoing calls
no test coverage detected