| 57 | } |
| 58 | |
| 59 | export interface GitHubProject { |
| 60 | id: string; |
| 61 | title: string; |
| 62 | description: string; |
| 63 | project_url: string; |
| 64 | downloads: number; |
| 65 | updated: Date; |
| 66 | versions: string[]; |
| 67 | loaders: Loader[]; |
| 68 | } |
| 69 | |
| 70 | export interface GitHubModInfo { |
| 71 | project: GitHubProject; |
nothing calls this directly
no outgoing calls
no test coverage detected