Skip to content

Instantly share code, notes, and snippets.

@SaifRehman
Created November 23, 2018 11:45
Show Gist options
  • Select an option

  • Save SaifRehman/cd182f12868d48cb7f73864d8c0318ea to your computer and use it in GitHub Desktop.

Select an option

Save SaifRehman/cd182f12868d48cb7f73864d8c0318ea to your computer and use it in GitHub Desktop.
import * as mongoose from 'mongoose';
const Schema = mongoose.Schema;
export const ItemSchema = new Schema({
Name:{
type: String
},
Image: {
type: String
},
Price: {
type: String
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment