| 198 | } |
| 199 | |
| 200 | export interface NormalizedProfile { |
| 201 | username: string; |
| 202 | name: string | null; |
| 203 | bio: string | null; |
| 204 | avatar_url: string; |
| 205 | location: string | null; |
| 206 | email: string | null; |
| 207 | website: string | null; |
| 208 | twitter_username: string | null; |
| 209 | linkedin_url?: string | null; |
| 210 | instagram_url?: string | null; |
| 211 | company: string | null; |
| 212 | followers: number; |
| 213 | following: number; |
| 214 | public_repos: number; |
| 215 | created_at: string; |
| 216 | updated_at?: string; |
| 217 | cached?: boolean; |
| 218 | about?: AboutData | null; |
| 219 | seo?: SEOData | null; |
| 220 | metrics?: GitHubMetrics | null; |
| 221 | } |
| 222 | |
| 223 | export interface AboutData { |
| 224 | summary: string; |
nothing calls this directly
no outgoing calls
no test coverage detected