From 36e2aa759ae449f19ccf7ae77ac66d5acbaeafbd Mon Sep 17 00:00:00 2001 From: Reinaldo Neto Date: Tue, 21 Dec 2021 23:11:56 -0300 Subject: [PATCH] TRoomModel --- app/definitions/IRoom.ts | 4 ++++ 1 file changed, 4 insertions(+) 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;