mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-27 22:35:23 +08:00
* [@types/is-callable] Add type definition * [@types/is-callable] Remove optional quantifier from parameter
9 lines
305 B
TypeScript
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;
|