| 14 | } |
| 15 | |
| 16 | export interface Release { |
| 17 | id: number; |
| 18 | upload_url: string; |
| 19 | html_url: string; |
| 20 | tag_name: string; |
| 21 | name: string | null; |
| 22 | body?: string | null | undefined; |
| 23 | target_commitish: string; |
| 24 | draft: boolean; |
| 25 | prerelease: boolean; |
| 26 | assets: Array<{ id: number; name: string; label?: string | null }>; |
| 27 | } |
| 28 | |
| 29 | export interface ReleaseResult { |
| 30 | release: Release; |
nothing calls this directly
no outgoing calls
no test coverage detected