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