| 26 | |
| 27 | // GitHub user interface based on the API response |
| 28 | interface GitHubUser { |
| 29 | login: string; |
| 30 | id: number; |
| 31 | node_id: string; |
| 32 | avatar_url: string; |
| 33 | gravatar_id: string; |
| 34 | url: string; |
| 35 | html_url: string; |
| 36 | followers_url: string; |
| 37 | following_url: string; |
| 38 | gists_url: string; |
| 39 | starred_url: string; |
| 40 | subscriptions_url: string; |
| 41 | organizations_url: string; |
| 42 | repos_url: string; |
| 43 | events_url: string; |
| 44 | received_events_url: string; |
| 45 | type: string; |
| 46 | user_view_type: string; |
| 47 | site_admin: boolean; |
| 48 | name: string | null; |
| 49 | company: string | null; |
| 50 | blog: string | null; |
| 51 | location: string | null; |
| 52 | email: string | null; |
| 53 | hireable: boolean | null; |
| 54 | bio: string | null; |
| 55 | twitter_username: string | null; |
| 56 | notification_email: string | null; |
| 57 | public_repos: number; |
| 58 | public_gists: number; |
| 59 | followers: number; |
| 60 | following: number; |
| 61 | created_at: string; |
| 62 | updated_at: string; |
| 63 | } |
| 64 | |
| 65 | // Preset interface for report generation |
| 66 | interface Preset { |
nothing calls this directly
no outgoing calls
no test coverage detected