UNPKG

ts-patch-mongoose

Version:
16 lines (13 loc) 257 B
import { Schema } from 'mongoose' export interface Description { summary: string } export const DescriptionSchema = new Schema<Description>( { summary: { type: String, required: true, }, }, { timestamps: false, _id: false }, )