| 7 | const SLOT_R = 3.5; |
| 8 | |
| 9 | interface Props { |
| 10 | data: { nodes: any[]; links: any[] }; |
| 11 | width: number; |
| 12 | height: number; |
| 13 | nodeColors: Record<string, string>; |
| 14 | edgeColors: Record<string, string>; |
| 15 | isDark?: boolean; |
| 16 | } |
| 17 | |
| 18 | interface EdgeInfo { |
| 19 | key: string; |
nothing calls this directly
no outgoing calls
no test coverage detected