UNPKG

228 BPlain TextView Raw
1/**
2 * `TaggedGitRepository` represents a remote git repository at a given commit/tag.
3 *
4 * @internal
5 */
6export interface TaggedGitRepository {
7 readonly url: string;
8 readonly tag?: string;
9 readonly dir?: string;
10}