| 111 | /* ── Main scene ─────────────────────────────────────────── */ |
| 112 | |
| 113 | interface GraphSceneProps { |
| 114 | data: GraphData; |
| 115 | highlightedIds: Set<number> | null; |
| 116 | cameraTarget: CameraTarget | null; |
| 117 | showLabels: boolean; |
| 118 | display?: DisplaySettings; |
| 119 | onNodeClick: (node: GraphNode) => void; |
| 120 | } |
| 121 | |
| 122 | export type { CameraTarget }; |
| 123 |
nothing calls this directly
no outgoing calls
no test coverage detected