jsdoc/test/fixtures/moduleisconstructor.js
Dominic Chambers 28cb42de33 Added missing coverage around modules that contain a default CommonJs
class being exported within the module -- this has actually shown that
the doclets produced are probably correct, and that the bug is likely to
be within the template.
2014-08-19 16:53:58 +01: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;