UNPKG

isaacscript-common

Version:

Helper functions and features for IsaacScript mods.

10 lines (8 loc) 269 B
import type { LevelStage, StageType } from "isaac-typescript-definitions"; export interface CustomTrapdoorDescription { destinationName: string | undefined; destinationStage: LevelStage; destinationStageType: StageType; open: boolean; firstSpawn: boolean; }