geneea-nlp-client
Version:
The TypeScript Client for Geneea Interpretor G3 API.
13 lines (12 loc) • 415 B
TypeScript
export declare class SemVer {
readonly major: number;
readonly minor: number;
readonly fix: number;
constructor(major: number, minor: number, fix: number);
static readonly REGEX: RegExp;
static valueOf(text: string): SemVer;
compareTo(other: SemVer): number;
isOlderThan(other: SemVer): boolean;
isSameAs(other: SemVer): boolean;
isSameOrNewerThan(other: SemVer): boolean;
}