From cb6ecdb94b3fc8d32ebaccc192d168d255a8fdff Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Mon, 19 Mar 2018 17:27:25 +0100 Subject: [PATCH] Add missing undefined type to timout variables --- src/ol/interaction/Draw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ol/interaction/Draw.js b/src/ol/interaction/Draw.js index a7795bae57..1b0ca73603 100644 --- a/src/ol/interaction/Draw.js +++ b/src/ol/interaction/Draw.js @@ -182,13 +182,13 @@ const Draw = function(options) { this.downPx_ = null; /** - * @type {number} + * @type {number|undefined} * @private */ this.downTimeout_; /** - * @type {number} + * @type {number|undefined} * @private */ this.lastDragTime_;