| 52 | | 'DEPENDS_ON'; |
| 53 | |
| 54 | export interface GraphNode { |
| 55 | id: number; |
| 56 | kind: NodeKind; |
| 57 | name: string; |
| 58 | qualifiedName: string; |
| 59 | filePath: string; |
| 60 | lineStart: number | null; |
| 61 | lineEnd: number | null; |
| 62 | language: string | null; |
| 63 | parentName: string | null; |
| 64 | params: string | null; |
| 65 | returnType: string | null; |
| 66 | modifiers: string | null; |
| 67 | isTest: boolean; |
| 68 | fileHash: string | null; |
| 69 | } |
| 70 | |
| 71 | export interface GraphEdge { |
| 72 | id: number; |
nothing calls this directly
no outgoing calls
no test coverage detected