UNPKG

foxts

Version:

Opinionated collection of common TypeScript utils by @SukkaW

5 lines (3 loc) 187 B
/** This type utility is only used for workaround https://github.com/microsoft/TypeScript/issues/37663 */ declare const isFunction: (x: unknown) => x is Function; export { isFunction };