UNPKG

easy-express-cwa

Version:

CLI tool to setup a common Express.js backend developed by codewithashim

11 lines (8 loc) 211 B
import { Model } from "mongoose"; export type IExample = { title: string; description: string; createdAt?: Date; updatedAt?: Date; } export type ExampleModel =Model<IExample, Record<string, unknown>>;