Returns a single edge by ID, or `undefined` if not found.
(id: string)
| 56 | getNode(id: string): N | undefined; |
| 57 | /** Returns a single edge by ID, or `undefined` if not found. */ |
| 58 | getEdge(id: string): E | undefined; |
| 59 | |
| 60 | /** Adds a node. If a node with the same ID already exists, it is replaced. */ |
| 61 | addNode(node: N): void; |
no outgoing calls
no test coverage detected