(branch: string)
| 1265 | } |
| 1266 | |
| 1267 | async getBranch(branch: string) { |
| 1268 | const result: Endpoints['GET /repos/{owner}/{repo}/branches/{branch}']['response']['data'] = |
| 1269 | await this.request(`${this.repoURL}/branches/${encodeURIComponent(branch)}`); |
| 1270 | return result; |
| 1271 | } |
| 1272 | |
| 1273 | async getDefaultBranch() { |
| 1274 | const result: Endpoints['GET /repos/{owner}/{repo}/branches/{branch}']['response']['data'] = |
no test coverage detected