| 3 | import type { GraphNode } from "../lib/types"; |
| 4 | |
| 5 | interface NodeLabelsProps { |
| 6 | nodes: GraphNode[]; |
| 7 | highlightedIds: Set<number> | null; |
| 8 | maxLabels?: number; |
| 9 | } |
| 10 | |
| 11 | interface LabelTexture { |
| 12 | texture: THREE.CanvasTexture; |
nothing calls this directly
no outgoing calls
no test coverage detected