UNPKG

declarations

Version:

[![npm version](https://badge.fury.io/js/declarations.svg)](https://www.npmjs.com/package/declarations)

10 lines (8 loc) 329 B
// 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; }