Module type for ol.struct.*
This commit is contained in:
@@ -95,7 +95,7 @@ LRUCache.prototype.containsKey = function(key) {
|
||||
|
||||
|
||||
/**
|
||||
* @param {function(this: S, T, string, ol.structs.LRUCache): ?} f The function
|
||||
* @param {function(this: S, T, string, module:ol/structs/LRUCache): ?} f The function
|
||||
* to call for every entry from the oldest to the newer. This function takes
|
||||
* 3 arguments (the entry value, the entry key and the LRUCache object).
|
||||
* The return value is ignored.
|
||||
|
||||
@@ -225,7 +225,7 @@ LinkedList.prototype.setFirstItem = function() {
|
||||
|
||||
/**
|
||||
* Concatenates two lists.
|
||||
* @param {ol.structs.LinkedList} list List to merge into the current list.
|
||||
* @param {module:ol/structs/LinkedList} list List to merge into the current list.
|
||||
*/
|
||||
LinkedList.prototype.concat = function(list) {
|
||||
if (list.head_) {
|
||||
|
||||
@@ -227,7 +227,7 @@ RBush.prototype.getExtent = function(opt_extent) {
|
||||
|
||||
|
||||
/**
|
||||
* @param {ol.structs.RBush} rbush R-Tree.
|
||||
* @param {module:ol/structs/RBush} rbush R-Tree.
|
||||
*/
|
||||
RBush.prototype.concat = function(rbush) {
|
||||
this.rbush_.load(rbush.rbush_.all());
|
||||
|
||||
Reference in New Issue
Block a user