isaacscript-common
Version:
Helper functions and features for IsaacScript mods.
9 lines • 333 B
TypeScript
import type { LevelStage, StageType } from "isaac-typescript-definitions";
export interface CustomTrapdoorDescription {
destinationName: string | undefined;
destinationStage: LevelStage;
destinationStageType: StageType;
open: boolean;
firstSpawn: boolean;
}
//# sourceMappingURL=CustomTrapdoorDescription.d.ts.map