export * from "./rooms.ts"; export interface Item { name: string; } export interface GameData { items: Item[]; }