From 945f1e7580aaa6ca523ad69b273ea52f622fc5b3 Mon Sep 17 00:00:00 2001 From: Marc Jansen Date: Wed, 16 Dec 2015 13:58:33 +0100 Subject: [PATCH] Correct typedef of selectinteraction options obj The key `features` of the constructor options that can be passed to `ol.interaction.Select` can also be `undefined`. --- externs/olx.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/externs/olx.js b/externs/olx.js index cbb4a1de09..559cb766c1 100644 --- a/externs/olx.js +++ b/externs/olx.js @@ -2995,7 +2995,7 @@ olx.interaction.SelectOptions.prototype.multi; * not set the interaction will create a collection. In any case the collection * used by the interaction is returned by * {@link ol.interaction.Select#getFeatures}. - * @type {ol.Collection.} + * @type {ol.Collection.|undefined} * @api */ olx.interaction.SelectOptions.prototype.features;