UNPKG

305 BTypeScriptView Raw
1// Type definitions for is-callable 1.1
2// Project: https://github.com/ljharb/is-callable
3// Definitions by: Daniel <https://github.com/nieltg>
4// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
5
6declare function isCallable(val: any): val is (...args: any[]) => any;
7
8export = isCallable;