Restore {Object <...>} instead of {? Object <...>}
This commit is contained in:
+1
-1
@@ -95,7 +95,7 @@ class BaseObject extends Observable {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @private
|
* @private
|
||||||
* @type {?Object<string, *>}
|
* @type {Object<string, *>}
|
||||||
*/
|
*/
|
||||||
this.values_ = null;
|
this.values_ = null;
|
||||||
|
|
||||||
|
|||||||
@@ -40,19 +40,19 @@ class Target extends Disposable {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @private
|
* @private
|
||||||
* @type {?Object<string, number>}
|
* @type {Object<string, number>}
|
||||||
*/
|
*/
|
||||||
this.pendingRemovals_ = null;
|
this.pendingRemovals_ = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @private
|
* @private
|
||||||
* @type {?Object<string, number>}
|
* @type {Object<string, number>}
|
||||||
*/
|
*/
|
||||||
this.dispatching_ = null;
|
this.dispatching_ = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @private
|
* @private
|
||||||
* @type {?Object<string, Array<import("../events.js").Listener>>}
|
* @type {Object<string, Array<import("../events.js").Listener>>}
|
||||||
*/
|
*/
|
||||||
this.listeners_ = null;
|
this.listeners_ = null;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user