UNPKG

generator-sails-rest-api

Version:

Yeoman generator that provides already configured and optimized Sails REST API with bundle of predefined features

27 lines (24 loc) 562 B
"use strict"; /** * 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 = { 'cron-jobs': { desc: `Jobs' names`, required: false, type: Array, defaults: [] } };