1234567891011121314151617181920212223242526272829 |
- /**
- * Describe the module here.
- * @module mymodule/config
- */
- /**
- * Create a new configuration.
- *
- * @classdesc Describe the class here.
- * @class
- * @alias module:mymodule/config
- * @param {string} id
- */
- function Config(id) {
- /** Document me. */
- this.id = id;
- }
- /**
- * Get the configuration ID.
- *
- * @return {string} The configuration ID.
- */
- Config.prototype.getId = function() {
- return this.id;
- }
- module.exports = Config;
|