[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. * The Open MCT application.
* @class MCT
* @constructor
* @memberof module:openmct
*/ */
function MCT() { function MCT() {
EventEmitter.call(this); EventEmitter.call(this);

View File

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