mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
347 B
TypeScript
12 lines
347 B
TypeScript
// Type definitions for compare-version v0.1.2
|
|
// Project: https://www.npmjs.com/package/compare-version
|
|
// Definitions by: Jonathan Pevarnek <https://github.com/jpevarnek/>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
|
|
declare module 'compare-version' {
|
|
function compare(a: string, b: string): number;
|
|
|
|
export = compare;
|
|
}
|