Remove @extends and @constructor annotations

This commit is contained in:
Tim Schaub
2018-07-18 00:36:29 -06:00
parent b7b15eb7f0
commit 9ce36da349
87 changed files with 110 additions and 282 deletions
+3 -3
View File
@@ -11,12 +11,12 @@
* `stopPropagation` and `preventDefault` methods. It is meant as base class
* for higher level events defined in the library, and works with
* {@link module:ol/events/EventTarget~EventTarget}.
*
* @constructor
* @param {string} type Type.
*/
class Event {
/**
* @param {string} type Type.
*/
constructor(type) {
/**
-2
View File
@@ -26,8 +26,6 @@ import Event from '../events/Event.js';
* `stopPropagation` or `preventDefault` on an event object, it means that no
* more listeners after this one will be called. Same as when the listener
* returns false.
*
* @constructor
*/
class EventTarget extends Disposable {
constructor() {