(hostname: Hostname)
| 22 | } |
| 23 | |
| 24 | export function openGitHubNotifications(hostname: Hostname) { |
| 25 | const url = new URL(`https://${hostname}`); |
| 26 | url.pathname = 'notifications'; |
| 27 | openExternalLink(url.toString() as Link); |
| 28 | } |
| 29 | |
| 30 | export function openGitHubIssues(hostname: Hostname) { |
| 31 | const url = new URL(`https://${hostname}`); |
no test coverage detected