(branch: string)
| 1239 | } |
| 1240 | |
| 1241 | async getBranch(branch: string) { |
| 1242 | const result: Endpoints['GET /repos/{owner}/{repo}/branches/{branch}']['response']['data'] = |
| 1243 | await this.request(`${this.repoURL}/branches/${encodeURIComponent(branch)}`); |
| 1244 | return result; |
| 1245 | } |
| 1246 | |
| 1247 | async getDefaultBranch() { |
| 1248 | const result: Endpoints['GET /repos/{owner}/{repo}/branches/{branch}']['response']['data'] = |
no test coverage detected