@ts-common/azure-js-dev-tools
Version:
Developer dependencies for TypeScript related projects
18 lines • 487 B
TypeScript
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/
export declare class Version {
major: number;
minor: number;
patch: number;
suffix?: string;
constructor(version: string);
static parse(version: string): Version;
bumpMajor(): void;
bumpMinor(): void;
bumpPatch(): void;
toString(): string;
}
//# sourceMappingURL=version.d.ts.map