mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-09 04:18:51 +08:00
9 lines
312 B
TypeScript
9 lines
312 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>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare function semverCompare<T>(a: T, b: T): number;
|
|
|
|
export = semverCompare;
|