1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 1 | /** * Objects that are shared across the entire application. * * @deprecated As of JSDoc 3.4.0. Do not use this module. It will be removed in a future release. * @module jsdoc/app */ module.exports = { /** * Namespace for shared objects. * * @namespace * @type {Object} */ jsdoc: { name: require('jsdoc/name'), parser: null, scanner: new (require('jsdoc/src/scanner').Scanner)() } }; |