export interface IRoomObjectModel { dispose(): void; getValue(key: string): T; setValue(key: string, value: T): void; removeKey(key: string): void; updateCounter: number; }