| 34 | } |
| 35 | |
| 36 | export interface GitHubRepository { |
| 37 | id: number; |
| 38 | node_id: string; |
| 39 | name: string; |
| 40 | full_name: string; |
| 41 | private: boolean; |
| 42 | owner: { |
| 43 | login: string; |
| 44 | id: number; |
| 45 | avatar_url: string; |
| 46 | html_url: string; |
| 47 | }; |
| 48 | html_url: string; |
| 49 | description: string | null; |
| 50 | fork: boolean; |
| 51 | url: string; |
| 52 | created_at: string; |
| 53 | updated_at: string; |
| 54 | pushed_at: string; |
| 55 | homepage: string | null; |
| 56 | size: number; |
| 57 | stargazers_count: number; |
| 58 | watchers_count: number; |
| 59 | language: string | null; |
| 60 | has_issues: boolean; |
| 61 | has_projects: boolean; |
| 62 | has_downloads: boolean; |
| 63 | has_wiki: boolean; |
| 64 | has_pages: boolean; |
| 65 | forks_count: number; |
| 66 | archived: boolean; |
| 67 | disabled: boolean; |
| 68 | open_issues_count: number; |
| 69 | license: { |
| 70 | key: string; |
| 71 | name: string; |
| 72 | spdx_id: string; |
| 73 | url: string; |
| 74 | node_id: string; |
| 75 | } | null; |
| 76 | topics: string[]; |
| 77 | visibility: string; |
| 78 | forks: number; |
| 79 | open_issues: number; |
| 80 | watchers: number; |
| 81 | default_branch: string; |
| 82 | } |
| 83 | |
| 84 | export interface GitHubLanguages { |
| 85 | [language: string]: number; |
nothing calls this directly
no outgoing calls
no test coverage detected