Use Object<Foo, Bar> instead of Object.<Foo, Bar>
This commit is contained in:
@@ -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_ = {};
|
||||
|
||||
|
||||
@@ -56,7 +56,7 @@ class PriorityQueue {
|
||||
this.priorities_ = [];
|
||||
|
||||
/**
|
||||
* @type {!Object.<string, boolean>}
|
||||
* @type {!Object<string, boolean>}
|
||||
* @private
|
||||
*/
|
||||
this.queuedElements_ = {};
|
||||
|
||||
@@ -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_ = {};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user