(issue: number)
| 193 | } |
| 194 | |
| 195 | public getIssue(issue: number): Promise<Issue> { |
| 196 | return this.request('GET', `/repos/${this.owner}/${this.repo}/issues/${issue}`); |
| 197 | } |
| 198 | |
| 199 | public listComments(options: ListCommentsOptions): Promise<Comment[]> { |
| 200 | const { issue, sort, direction, page, pageSize } = options; |