UNPKG

isaacscript-common

Version:

Helper functions and features for IsaacScript mods.

5 lines (3 loc) 213 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];