[API] Expose MCT on openmct

This commit is contained in:
Victor Woeltjen 2016-09-01 15:51:25 -07:00
parent e37510dbab
commit 33ced4bccf
2 changed files with 3 additions and 3 deletions

View File

@ -20,9 +20,7 @@ define([
/**
* The Open MCT application.
* @constructor
* @memberof module:openmct
* @class MCT
*/
function MCT() {
EventEmitter.call(this);

View File

@ -7,9 +7,11 @@ define(['./MCT', './api/Type'], function (MCT, Type) {
*
* @exports openmct
* @borrows Type as Type
* @borrows MCT as MCT
*/
var openmct = new MCT();
openmct.MCT = MCT;
openmct.Type = Type;
return openmct;