9 lines
624 B
TypeScript
9 lines
624 B
TypeScript
/**
|
|
* Compare [semver](https://semver.org/) version strings to find greater, equal or lesser.
|
|
* This library supports the full semver specification, including comparing versions with different number of digits like `1.0.0`, `1.0`, `1`, and pre-release versions like `1.0.0-alpha`.
|
|
* @param v1 - First version to compare
|
|
* @param v2 - Second version to compare
|
|
* @returns Numeric value compatible with the [Array.sort(fn) interface](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#Parameters).
|
|
*/
|
|
export declare const compareVersions: (v1: string, v2: string) => 0 | 1 | -1;
|