DefinitelyTyped/types/is-number-like/index.d.ts
Florian Keller b1ca386416 Add types for multiple vigour.io projects (#35629)
Included projects:
* is-number-like
* quick-hash
* turbostatus
* vigour-ua
2019-05-22 09:07:08 -07:00

14 lines
478 B
TypeScript

// Type definitions for is-number-like 1.0
// Project: https://github.com/vigour-io/is-number-like#readme
// Definitions by: Florian Keller <https://github.com/ffflorian>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/**
* Checks whether provided parameter looks like a number
* @param val the value to check
* @returns `true` if `val` looks like a number, `false` otherwise
*/
declare function isNumberLike(val: any): boolean;
export = isNumberLike;