import type { DoorSlotFlag, RoomShape, RoomType } from "isaac-typescript-definitions"; import type { CustomStageLua, CustomStageRoomMetadata } from "../CustomStageTSConfig"; export interface CustomStage extends CustomStageLua { /** A map that makes it easier to select certain room type/shape/door combinations. */ readonly roomTypeMap: RoomTypeMap; } export type RoomTypeMap = ReadonlyMap; type RoomShapeMap = ReadonlyMap; type RoomDoorSlotMap = ReadonlyMap; export {}; //# sourceMappingURL=CustomStage.d.ts.map