1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 1 2 2 | /** * @file parari * @module parari/lib * @property commands {object} - {@link module:parari/lib/commands|commands module}. * @property themes {object} - {@link module:parari/lib/themes|themes module}. */ "use strict"; module.exports = { get commands() { return require('./commands'); }, get themes() { return require('./themes'); } }; |