UNPKG

@iletimerkezi/iletimerkezi-node

Version:
26 lines 612 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.VersionInfo = void 0; class VersionInfo { /** * Get version string in semver format */ static string() { return `${this.MAJOR}.${this.MINOR}.${this.PATCH}`; } /** * Get version as object */ static toJSON() { return { major: this.MAJOR, minor: this.MINOR, patch: this.PATCH }; } } exports.VersionInfo = VersionInfo; VersionInfo.MAJOR = 1; VersionInfo.MINOR = 0; VersionInfo.PATCH = 1; //# sourceMappingURL=VersionInfo.js.map