UNPKG

typescript-express-api-generator

Version:

this is a file generator utility that can be used with my express typescript starter repo https://github.com/ShashiSrinath/node-express-typescript-starter

15 lines (11 loc) 260 B
const modelMap = { string: 'String', number: 'Number', }; const mapMongooseType = (type) => { if (modelMap[type]) { return modelMap[type]; } throw new Error(`Invalid mongoose model mapping type: ${type}`); }; module.exports = mapMongooseType;