DefinitelyTyped/types/semver-compare/index.d.ts
2019-11-18 14:15:17 -08:00

10 lines
386 B
TypeScript

// Type definitions for semver-compare 1.0
// Project: https://github.com/substack/semver-compare
// Definitions by: Kovács Vince <https://github.com/vincekovacs>
// Linus Unnebäck <https://github.com/LinusU>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare function semverCompare(a: string, b: string): -1 | 0 | 1;
export = semverCompare;