Restore {Object <...>} instead of {? Object <...>}

This commit is contained in:
Michał Zielański
2020-06-24 10:05:41 +02:00
parent 235babfd7f
commit e706a5cd67
2 changed files with 4 additions and 4 deletions

View File

@@ -95,7 +95,7 @@ class BaseObject extends Observable {
/**
* @private
* @type {?Object<string, *>}
* @type {Object<string, *>}
*/
this.values_ = null;

View File

@@ -40,19 +40,19 @@ class Target extends Disposable {
/**
* @private
* @type {?Object<string, number>}
* @type {Object<string, number>}
*/
this.pendingRemovals_ = null;
/**
* @private
* @type {?Object<string, number>}
* @type {Object<string, number>}
*/
this.dispatching_ = null;
/**
* @private
* @type {?Object<string, Array<import("../events.js").Listener>>}
* @type {Object<string, Array<import("../events.js").Listener>>}
*/
this.listeners_ = null;
}