From 65614d74f87851c200f4603f019d9acae44f35b8 Mon Sep 17 00:00:00 2001 From: Guillaume Beraudo Date: Thu, 16 Apr 2015 11:06:00 +0200 Subject: [PATCH] Add missing @api These types are referenced in the externs but were not declared. Found by ol3-cesium. --- src/ol/featureloader.js | 1 + src/ol/loadingstrategy.js | 1 + 2 files changed, 2 insertions(+) diff --git a/src/ol/featureloader.js b/src/ol/featureloader.js index 2fc5dfe114..e3c7ab279b 100644 --- a/src/ol/featureloader.js +++ b/src/ol/featureloader.js @@ -11,6 +11,7 @@ goog.require('ol.xml'); /** + * @api * @typedef {function(this:ol.source.Vector, ol.Extent, number, * ol.proj.Projection)} */ diff --git a/src/ol/loadingstrategy.js b/src/ol/loadingstrategy.js index 4ea28cad39..a90d07f1bb 100644 --- a/src/ol/loadingstrategy.js +++ b/src/ol/loadingstrategy.js @@ -6,6 +6,7 @@ goog.require('ol.TileCoord'); /** * @typedef {function(ol.Extent, number): Array.} + * @api */ ol.LoadingStrategy;