UNPKG

isaacscript-common

Version:

Helper functions and features for IsaacScript mods.

4 lines 255 B
import type { AnyFunction } from "./AnyFunction"; /** Helper type to represent a tuple containing the name of a function and the function itself. */ export type FunctionTuple = [name: string, func: AnyFunction]; //# sourceMappingURL=FunctionTuple.d.ts.map