Files
shaka-player/third_party/jsdoc/test/fixtures/moduleisconstructor.js
T
2014-12-19 14:26:19 -08:00

19 lines
305 B
JavaScript

/**
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;
}
module.exports = Config;