( account: Account, url: Link, )
| 187 | * Get the `html_url` from the GitHub response |
| 188 | */ |
| 189 | export async function getHtmlUrl( |
| 190 | account: Account, |
| 191 | url: Link, |
| 192 | ): Promise<GitHubHtmlUrlResponse> { |
| 193 | return followUrl<GitHubHtmlUrlResponse>(account, url); |
| 194 | } |
| 195 | |
| 196 | /** |
| 197 | * Follow GitHub Response URL |
no test coverage detected