UNPKG

isaacscript-common

Version:

Helper functions and features for IsaacScript mods.

6 lines (5 loc) 228 B
/** * Helper type to represent any function. This is safer than using the built-in `Function` type, as * it does not completely turn off all type safety. */ export type AnyFunction = (...args: readonly unknown[]) => unknown;