(repo: string, ref: string)
| 218 | // the ref here may be a commitSha, branch, tag, or 'HEAD' |
| 219 | // optionally return changed files (if `files` exists can reduce api calls) |
| 220 | provideCommit(repo: string, ref: string): Promisable<(Commit & { files?: ChangedFile[] }) | null> { |
| 221 | return null; |
| 222 | } |
| 223 | |
| 224 | provideCommitChangedFiles(repo: string, ref: string, options?: CommonQueryOptions): Promisable<ChangedFile[]> { |
| 225 | return []; |
no outgoing calls
no test coverage detected