Ignore 'this' type in function typedef

This commit is contained in:
Frederic Junod
2018-05-09 13:49:59 +02:00
parent 628a49f478
commit 854c95f37a
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ import {WEBKIT, MAC} from '../has.js';
* A function that takes an {@link module:ol/MapBrowserEvent} and returns a
* `{boolean}`. If the condition is met, true should be returned.
*
* @typedef {function(module:ol/MapBrowserEvent): boolean} Condition
* @typedef {function(this: ?, module:ol/MapBrowserEvent): boolean} Condition
*/