| 2 | import { RequirementLevel } from '../modrinth/types.modrinth'; |
| 3 | |
| 4 | export interface GitHubRepoConfig { |
| 5 | owner: string; |
| 6 | repo: string; |
| 7 | loader: Loader; |
| 8 | pattern: RegExp; |
| 9 | title?: string; |
| 10 | client?: RequirementLevel; |
| 11 | server?: RequirementLevel; |
| 12 | modrinthPage?: string; |
| 13 | icon_url?: string; |
| 14 | description?: string; |
| 15 | } |
| 16 | |
| 17 | export interface GitHubRelease { |
| 18 | id: number; |
nothing calls this directly
no outgoing calls
no test coverage detected