declare enum VCSDeploymentType {
    Branch = "branch",
    Commit = "commit",
    Tag = "tag"
}

export { VCSDeploymentType };
