import type { Buff } from '../buffs/index.ts'; import type { ItemInput } from '../shop/types.ts'; import type { SkillHrid } from '../skills/index.ts'; import type { HOUSE_ROOM_HRIDS } from './constants.ts'; export type HouseRoomHrid = (typeof HOUSE_ROOM_HRIDS)[number]; export interface HouseRoom { hrid: HouseRoomHrid; name: string; skillHrid: SkillHrid; usableInActionTypeMap: Record; actionBuffs: Buff[]; globalBuffs: Buff[]; upgradeCostsMap: Record<'1' | '2' | '3' | '4' | '5' | '6' | '7' | '8', ItemInput[]>; sortIndex: number; } //# sourceMappingURL=types.d.ts.map