| 58 | ]); |
| 59 | |
| 60 | interface RelationshipsData { |
| 61 | graph?: { |
| 62 | imports?: Record<string, string[]>; |
| 63 | importDetails?: Record<string, Record<string, { line?: number; importedSymbols?: string[] }>>; |
| 64 | importedBy?: Record<string, string[]>; |
| 65 | exports?: Record<string, FileExport[]>; |
| 66 | }; |
| 67 | stats?: unknown; |
| 68 | } |
| 69 | |
| 70 | export const definition: Tool = { |
| 71 | name: 'search_codebase', |
nothing calls this directly
no outgoing calls
no test coverage detected