| 1 | export interface GitHubUser { |
| 2 | login: string; |
| 3 | id: number; |
| 4 | node_id: string; |
| 5 | avatar_url: string; |
| 6 | gravatar_id: string; |
| 7 | url: string; |
| 8 | html_url: string; |
| 9 | followers_url: string; |
| 10 | following_url: string; |
| 11 | gists_url: string; |
| 12 | starred_url: string; |
| 13 | subscriptions_url: string; |
| 14 | organizations_url: string; |
| 15 | repos_url: string; |
| 16 | events_url: string; |
| 17 | received_events_url: string; |
| 18 | type: string; |
| 19 | site_admin: boolean; |
| 20 | name: string | null; |
| 21 | company: string | null; |
| 22 | blog: string; |
| 23 | location: string | null; |
| 24 | email: string | null; |
| 25 | hireable: boolean | null; |
| 26 | bio: string | null; |
| 27 | twitter_username: string | null; |
| 28 | public_repos: number; |
| 29 | public_gists: number; |
| 30 | followers: number; |
| 31 | following: number; |
| 32 | created_at: string; |
| 33 | updated_at: string; |
| 34 | } |
| 35 | |
| 36 | export interface GitHubRepository { |
| 37 | id: number; |
nothing calls this directly
no outgoing calls
no test coverage detected