mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-26 17:46:26 +03:00
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; |