UNPKG

express-api-cli

Version:

Cli tool for generating an express project. Instead of wasting extra time creating your project structure, start building right away

16 lines (13 loc) 256 B
import { Schema, model } from 'mongoose'; import { IUser } from '../interfaces/user.interface'; const userSchema = new Schema( { name: { type: String } }, { timestamps: true } ); export default model<IUser>('User', userSchema);