10 lines
117 B
TypeScript
10 lines
117 B
TypeScript
export * from "./rooms.ts";
|
|
|
|
export interface Item {
|
|
name: string;
|
|
}
|
|
|
|
export interface GameData {
|
|
items: Item[];
|
|
}
|