Files
openmct/src/openmct.js
2016-09-02 14:58:06 -07:00

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;
});