| 28 | } |
| 29 | |
| 30 | export interface GitHubAsset { |
| 31 | id: number; |
| 32 | name: string; |
| 33 | label: string | null; |
| 34 | content_type: string; |
| 35 | size: number; |
| 36 | digest: string; |
| 37 | download_count: number; |
| 38 | created_at: string; |
| 39 | updated_at: string; |
| 40 | url: string; |
| 41 | browser_download_url: string; |
| 42 | } |
| 43 | |
| 44 | export interface GitHubVersion { |
| 45 | name: string; |
nothing calls this directly
no outgoing calls
no test coverage detected