[API] Add JSDoc for MCT

This commit is contained in:
Victor Woeltjen 2016-08-25 14:54:07 -07:00
parent ab5b1d3754
commit 6a23df9454

View File

@ -17,6 +17,14 @@ define([
Selection,
objectUtils
) {
/**
* The Open MCT application, an instance of which is exported
* by the `mct` module, or exposed as `mct` in the global scope if
* loaded via a script tag.
* @constructor MCT
* @augments {EventEmitter}
*/
function MCT() {
EventEmitter.call(this);
this.legacyBundle = { extensions: {} };