smartversion/dist/index.d.ts

14 lines
319 B
TypeScript
Raw Normal View History

2017-08-17 14:15:47 +00:00
import { SemVer } from 'semver';
export declare class SmartVersion {
semver: SemVer;
update: {
patch: () => void;
minor: () => void;
major: () => void;
};
constructor(semVerStringArg: string);
readonly major: number;
readonly minor: number;
readonly patch: number;
}