mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-06-03 10:00:07 +00: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;
|