DefinitelyTyped/types/natural-compare-lite/index.d.ts
2019-02-15 21:06:08 +05:00

9 lines
336 B
TypeScript

// Type definitions for natural-compare-lite 1.4
// Project: https://github.com/litejs/natural-compare-lite
// Definitions by: Doniyor Aliyev <https://github.com/doniyor2109>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare function naturalCompare(a: string, b: string): -1 | 0 | 1;
export = naturalCompare;