mirror of
https://github.com/nasa/openmct.git
synced 2025-06-17 14:48:13 +00:00
17 lines
466 B
JavaScript
17 lines
466 B
JavaScript
define(['./MCT', './api/Type'], function (MCT, Type) {
|
|
/**
|
|
* Open MCT is an extensible web application for building mission
|
|
* control user interfaces. This module is itself an instance of
|
|
* [MCT]{@link module:openmct.MCT}, which provides an interface for
|
|
* configuring and executing the application.
|
|
*
|
|
* @exports openmct
|
|
*/
|
|
var openmct = new MCT();
|
|
|
|
openmct.MCT = MCT;
|
|
openmct.Type = Type;
|
|
|
|
return openmct;
|
|
});
|