| 233 | } |
| 234 | |
| 235 | export interface FeaturedProject { |
| 236 | name: string; |
| 237 | description: string | null; |
| 238 | url: string; |
| 239 | homepage?: string | null; |
| 240 | stars: number; |
| 241 | forks: number; |
| 242 | language: string | null; |
| 243 | topics: string[]; |
| 244 | updated_at: string; |
| 245 | created_at: string; |
| 246 | languages?: { [key: string]: number }; |
| 247 | ai_summary?: string; |
| 248 | } |
| 249 | |
| 250 | export interface ProjectsData { |
| 251 | featured: FeaturedProject[]; |
nothing calls this directly
no outgoing calls
no test coverage detected