diff --git a/app/definitions/IRoom.ts b/app/definitions/IRoom.ts index e83416612..3aea34248 100644 --- a/app/definitions/IRoom.ts +++ b/app/definitions/IRoom.ts @@ -1,3 +1,5 @@ +import Model from '@nozbe/watermelondb/Model'; + import { IServedBy } from './IServedBy'; export interface IRoom { @@ -14,3 +16,5 @@ export interface IRoom { tags?: string[]; avatarETag?: string; } + +export type TRoomModel = IRoom & Model;