| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | 29× 29× 29× 1× | 'use strict';
/* jshint node: true */
/**
* @typedef MusicKit
* @type Object
* @property {String} name I18N name of the music kit
* @property {String} techName Technical name of the music kit
* @property {String} defIndex Index/Key of the music kit
*/
/**
* Standard return for a MusicKit.
* @class
*/
class MusicKit {
/** @constructor */
constructor(name, techName, defIndex){
this.name = name;
this.techName = techName;
this.defIndex = defIndex;
}
}
module.exports = MusicKit; |