Changed Model type back to interface

This commit is contained in:
EpicUsername12
2023-05-27 00:34:54 +02:00
parent 04db683c45
commit 6c592fbd1d

View File

@@ -40,6 +40,6 @@ export interface ICommunityMethods {
interface ICommunityQueryHelpers {}
export type CommunityModel = Model<ICommunity, ICommunityQueryHelpers, ICommunityMethods>
export interface CommunityModel extends Model<ICommunity, ICommunityQueryHelpers, ICommunityMethods> {}
export type HydratedCommunityDocument = HydratedDocument<ICommunity, ICommunityMethods>