| 1 | export interface IGithubRelease { |
| 2 | url: string; |
| 3 | // eslint-disable-next-line camelcase |
| 4 | html_url: string; |
| 5 | // eslint-disable-next-line camelcase |
| 6 | assets_url: string; |
| 7 | // eslint-disable-next-line camelcase |
| 8 | upload_url: string; |
| 9 | // eslint-disable-next-line camelcase |
| 10 | tarball_url: string; |
| 11 | // eslint-disable-next-line camelcase |
| 12 | zipball_url: string; |
| 13 | id: number; |
| 14 | // eslint-disable-next-line camelcase |
| 15 | node_id: string; |
| 16 | // eslint-disable-next-line camelcase |
| 17 | tag_name: string; |
| 18 | // eslint-disable-next-line camelcase |
| 19 | target_commitish: string; |
| 20 | name: string; |
| 21 | body: string; |
| 22 | draft: boolean; |
| 23 | prerelease: boolean; |
| 24 | // eslint-disable-next-line camelcase |
| 25 | created_at: string; |
| 26 | // eslint-disable-next-line camelcase |
| 27 | published_at: string; |
| 28 | author: IAuthor; |
| 29 | assets?: IAssetsEntity[]; |
| 30 | } |
| 31 | |
| 32 | export interface IAuthor { |
| 33 | login: string; |
nothing calls this directly
no outgoing calls
no test coverage detected