Files
DefinitelyTyped/types/is-callable/index.d.ts
Daniel 5d2acd7ea2 Add typings for is-callable (#27859)
* [@types/is-callable] Add type definition

* [@types/is-callable] Remove optional quantifier from parameter
2018-08-03 15:28:50 -07:00

9 lines
305 B
TypeScript

// Type definitions for is-callable 1.1
// Project: https://github.com/ljharb/is-callable
// Definitions by: Daniel <https://github.com/nieltg>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare function isCallable(val: any): val is (...args: any[]) => any;
export = isCallable;