mirror of
https://github.com/nasa/openmct.git
synced 2025-06-18 15:18:12 +00:00
[API] Expose MCT on openmct
This commit is contained in:
@ -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);
|
||||||
|
@ -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;
|
||||||
|
Reference in New Issue
Block a user