(sha: string)
| 9 | export interface GitRefResolvingInterface { |
| 10 | resolveDefaultBranch(): Promise<ResolvedSha>, |
| 11 | resolveCommit(sha: string): Promise<?ResolvedSha>, |
| 12 | } |
| 13 | export type GitRefs = Map<string, string>; |
| 14 | export type ResolveVersionOptions = { |
no outgoing calls
no test coverage detected