| 6 | |
| 7 | // Interface should match the structure from the API |
| 8 | interface ProcessedProject { |
| 9 | id: string; |
| 10 | owner: string; |
| 11 | repo: string; |
| 12 | name: string; |
| 13 | repo_type: string; |
| 14 | submittedAt: number; |
| 15 | language: string; |
| 16 | } |
| 17 | |
| 18 | interface ProcessedProjectsProps { |
| 19 | showHeader?: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected