From 6c592fbd1da4fae9a65cc69bdfaf0eeb1abad585 Mon Sep 17 00:00:00 2001 From: EpicUsername12 <39063367+EpicUsername12@users.noreply.github.com> Date: Sat, 27 May 2023 00:34:54 +0200 Subject: [PATCH] Changed Model type back to interface --- src/types/mongoose/community.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/mongoose/community.ts b/src/types/mongoose/community.ts index 1c60d71..edf5a2a 100644 --- a/src/types/mongoose/community.ts +++ b/src/types/mongoose/community.ts @@ -40,6 +40,6 @@ export interface ICommunityMethods { interface ICommunityQueryHelpers {} -export type CommunityModel = Model +export interface CommunityModel extends Model {} export type HydratedCommunityDocument = HydratedDocument \ No newline at end of file