mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
23 lines
393 B
JavaScript
23 lines
393 B
JavaScript
/**
|
|
* Describe the module here.
|
|
* @module mymodule/config
|
|
*/
|
|
|
|
/** Describe the class here. */
|
|
export default class Config {
|
|
/** Create a new configuration. */
|
|
constructor(id) {
|
|
/** Document me. */
|
|
this.id = id;
|
|
}
|
|
|
|
/**
|
|
* Get the configuration ID.
|
|
*
|
|
* @return {string} The configuration ID.
|
|
*/
|
|
getId() {
|
|
return this.id;
|
|
}
|
|
}
|