UNPKG

@jwpkg/gitversion

Version:

Gitversion is a complete customizable git-based release management system

10 lines (9 loc) 481 B
import { VersionBranch } from '../core/configuration'; import { Git } from '../core/git'; import { IWorkspace } from '../core/workspace-utils'; import { GitVersionCommand } from './context'; export declare class RestoreCommand extends GitVersionCommand { static paths: string[][]; execute(): Promise<number>; currentVersionFromGit(workspace: IWorkspace, git: Git, branch: VersionBranch, standardPrefix: string): Promise<import("../core/version-utils").GitSemverTag>; }