UNPKG

release-please

Version:

generate release PRs based on the conventionalcommits.org spec

11 lines (10 loc) 338 B
import { Version } from '../version'; export declare class TagName { component?: string; version: Version; separator: string; includeV: boolean; constructor(version: Version, component?: string, separator?: string, includeV?: boolean); static parse(tagName: string): TagName | undefined; toString(): string; }