| 1 | // SPDX-License-Identifier: AGPL-3.0-only |
| 2 | // Copyright (C) 2026 Giancarlo Erra - Altaire Limited |
| 3 | export interface FileChunk { |
| 4 | id: string; |
| 5 | filePath: string; |
| 6 | relativePath: string; |
| 7 | content: string; |
| 8 | startLine: number; |
| 9 | endLine: number; |
| 10 | language: string; |
| 11 | type: "code" | "comment" | "mixed"; |
| 12 | } |
| 13 | |
| 14 | export interface CodeGraphNode { |
| 15 | filePath: string; |
nothing calls this directly
no outgoing calls
no test coverage detected