generator-nest-js-boilerplate
Version:
This generator will help you to build your own Nest.js Mongodb API using TypeScript 4
18 lines (16 loc) • 445 B
JavaScript
/**
* Exports object that contains names of arguments as a key and their configuration objects as a value
*
* @example
* module.exports = {
* argumentName: {
* desc: 'Description for the argument',
* required: false,
* optional: true,
* type: String || Number || Array || Object,
* defaults: 'Default value for this argument',
* banner: 'String to show on usage notes'
* }
* };
*/
module.exports = {};