(repo: string, number: JsonValue)
| 1562 | } |
| 1563 | |
| 1564 | function fetchIssue(repo: string, number: JsonValue) { |
| 1565 | return ghJson(["api", `repos/${repo}/issues/${number}`]); |
| 1566 | } |
| 1567 | |
| 1568 | function fetchPullRequest(repo: string, number: JsonValue) { |
| 1569 | return ghJson(["api", `repos/${repo}/pulls/${number}`]); |
no test coverage detected