( repo: string, id: string, )
| 235 | |
| 236 | // optionally return changed files (if `files` exists can reduce api calls) |
| 237 | provideCodeReview( |
| 238 | repo: string, |
| 239 | id: string, |
| 240 | ): Promisable<(CodeReview & { sourceSha: string; targetSha: string; files?: ChangedFile[] }) | null> { |
| 241 | return null; |
| 242 | } |
| 243 | |
| 244 | provideCodeReviewChangedFiles(repo: string, id: string, options?: CommonQueryOptions): Promisable<ChangedFile[]> { |
| 245 | return []; |
no outgoing calls
no test coverage detected