| 41 | import CodeViewer from './CodeViewer'; |
| 42 | |
| 43 | interface KeyFile { |
| 44 | path: string; |
| 45 | name: string; |
| 46 | reason: string; |
| 47 | summary: string; |
| 48 | size: number; |
| 49 | content?: string; |
| 50 | detailedAnalysis?: string; |
| 51 | } |
| 52 | |
| 53 | export default function RepositoryKeyFiles({ repoFullName }: { repoFullName: string }) { |
| 54 | const [keyFiles, setKeyFiles] = useState<KeyFile[]>([]); |
nothing calls this directly
no outgoing calls
no test coverage detected