mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
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.
19 lines
305 B
JavaScript
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; |