Skip to content

Instantly share code, notes, and snippets.

View Elvincth's full-sized avatar
🚀
Hey

Elvin Chu Elvincth

🚀
Hey
View GitHub Profile
@Elvincth
Elvincth / test.model.ts
Created August 22, 2022 10:22
mongoose-paginate-v2 typescript usage
schema.plugin(paginate);
export const CourseModel: PaginateModel<ICourse> =
(models.Course as PaginateModel<ICourse>) ||
model<ICourse, PaginateModel<ICourse>>("Course", schema);