Use Object<Foo, Bar> instead of Object.<Foo, Bar>

This commit is contained in:
Tim Schaub
2018-07-25 18:33:49 -07:00
parent d12ef20b12
commit affbf59b77
92 changed files with 334 additions and 334 deletions

View File

@@ -47,7 +47,7 @@ class LRUCache extends EventTarget {
/**
* @private
* @type {!Object.<string, module:ol/structs/LRUCache~Entry>}
* @type {!Object<string, module:ol/structs/LRUCache~Entry>}
*/
this.entries_ = {};

View File

@@ -56,7 +56,7 @@ class PriorityQueue {
this.priorities_ = [];
/**
* @type {!Object.<string, boolean>}
* @type {!Object<string, boolean>}
* @private
*/
this.queuedElements_ = {};

View File

@@ -37,7 +37,7 @@ class RBush {
* A mapping between the objects added to this rbush wrapper
* and the objects that are actually added to the internal rbush.
* @private
* @type {Object.<number, module:ol/structs/RBush~Entry>}
* @type {Object<number, module:ol/structs/RBush~Entry>}
*/
this.items_ = {};