mirror of
https://github.com/nasa/openmct.git
synced 2024-12-18 20:57:53 +00:00
[API] Use JSDoc config
This commit is contained in:
parent
2af778145d
commit
96c3d1cac2
@ -151,7 +151,7 @@ gulp.task('api', function () {
|
||||
var markdown = require('gulp-markdown');
|
||||
return gulp.src('src/**/*.js')
|
||||
.pipe(concat('api.md'))
|
||||
.pipe(jsdoc2md())
|
||||
.pipe(jsdoc2md(require('./jsdoc.json')))
|
||||
.pipe(markdown())
|
||||
.pipe(gulp.dest(paths.dist));
|
||||
});
|
||||
|
@ -1,8 +1,9 @@
|
||||
define(['EventEmitter'], function (EventEmitter) {
|
||||
/**
|
||||
* This is a selection.
|
||||
* Maintains selection state for the application.
|
||||
* @interface
|
||||
* @memberof module:openmct
|
||||
* @extends {EventEmitter}
|
||||
*/
|
||||
function Selection() {
|
||||
EventEmitter.call(this);
|
||||
|
Loading…
Reference in New Issue
Block a user