@ts-fluentvalidation/core
Version:
Core library of @ts-fluentvalidation providing validations in a fluent syntax.
20 lines (19 loc) • 485 B
TypeScript
/**
* Represents a version number.
*/
declare class Version {
readonly fullVersion: string;
readonly major: string;
readonly minor: string;
readonly patch: string;
/**
* Creates a new instance of the Version class.
* @param fullVersion - The full version number in the format "major.minor.patch".
*/
constructor(fullVersion: string);
}
/**
* Represents the current version of the library.
*/
export declare const VERSION: Version;
export {};