| 7 | |
| 8 | export type ResolvedSha = {sha: string, ref: ?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 = { |
| 15 | version: string, |
no outgoing calls
no test coverage detected
searching dependent graphs…