keep-a-changelog
Version:
Node package to parse and generate changelogs following the [keepachangelog](https://keepachangelog.com/) format.
16 lines • 558 B
TypeScript
import type { Comparator, SemVer } from "./types.js";
/**
* The minimum valid SemVer object. Equivalent to `0.0.0`.
*/
export declare const MIN: SemVer;
/**
* ANY is a sentinel value used by some range calculations. It is not a valid
* SemVer object and should not be used directly.
*/
export declare const ANY: SemVer;
/**
* A comparator which will span all valid semantic versions
*/
export declare const ALL: Comparator;
export declare const OPERATORS: readonly [undefined, "=", "!=", ">", ">=", "<", "<="];
//# sourceMappingURL=_constants.d.ts.map