declarations
Version:
[](https://www.npmjs.com/package/declarations)
10 lines (8 loc) • 329 B
TypeScript
// Type definitions for NaturalSort
// Project: https://github.com/studio-b12/natural-sort
// Definitions by: Antonio Morales <https://github.com/a-morales>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare module "naturalSort" {
function naturalSort<T>(a: T, b: T): number;
export = naturalSort;
}