Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CLA Approved] Add returns after JSDoc comments for consistency #7505

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/MCT.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,15 @@ export class MCT extends EventEmitter {

/**
* Tracks current selection state of the application.
*
* @private
*/
this.selection = new Selection(this);

/**
* MCT's time conductor, which may be used to synchronize view contents
* for telemetry- or time-based views.
*
* @type {module:openmct.TimeConductor}
* @memberof module:openmct.MCT#
* @name conductor
Expand Down Expand Up @@ -205,6 +207,7 @@ export class MCT extends EventEmitter {
/**
* MCT's user awareness management, to enable user and
* role specific functionality.
*
* @type {module:openmct.UserAPI}
* @memberof module:openmct.MCT#
* @name user
Expand All @@ -227,6 +230,7 @@ export class MCT extends EventEmitter {
/**
* MCT's annotation API that enables
* human-created comments and categorization linked to data products
*
* @type {module:openmct.AnnotationAPI}
* @memberof module:openmct.MCT#
* @name annotation
Expand Down Expand Up @@ -268,6 +272,7 @@ export class MCT extends EventEmitter {
}
/**
* Set path to where assets are hosted. This should be the path to main.js.
*
* @memberof module:openmct.MCT#
* @method setAssetPath
*/
Expand All @@ -276,6 +281,7 @@ export class MCT extends EventEmitter {
}
/**
* Get path to where assets are hosted.
*
* @memberof module:openmct.MCT#
* @method getAssetPath
*/
Expand All @@ -294,6 +300,7 @@ export class MCT extends EventEmitter {
/**
* Start running Open MCT. This should be called only after any plugins
* have been installed.
*
* @fires module:openmct.MCT~start
* @memberof module:openmct.MCT#
* @method start
Expand Down Expand Up @@ -329,6 +336,7 @@ export class MCT extends EventEmitter {
/**
* Fired by [MCT]{@link module:openmct.MCT} when the application
* is started.
*
* @event start
* @memberof module:openmct.MCT~
*/
Expand Down