| 1 | export interface SearchResult { |
| 2 | id: string; |
| 3 | title: string; |
| 4 | description: string; |
| 5 | branch: string; |
| 6 | lastUpdateDate: string; |
| 7 | state: DocumentState; |
| 8 | totalTokens: number; |
| 9 | totalSnippets: number; |
| 10 | stars?: number; |
| 11 | trustScore?: number; |
| 12 | benchmarkScore?: number; |
| 13 | versions?: string[]; |
| 14 | source?: string; |
| 15 | } |
| 16 | |
| 17 | export interface SearchResponse { |
| 18 | error?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected