Module types for ol/geom

This commit is contained in:
Tim Schaub
2018-03-11 23:08:50 -06:00
parent 41d9a84a8f
commit ef70d71636
60 changed files with 482 additions and 482 deletions

View File

@@ -15,7 +15,7 @@ import Polygon from '../geom/Polygon.js';
const RenderBox = function(className) {
/**
* @type {ol.geom.Polygon}
* @type {module:ol/geom/Polygon~Polygon}
* @private
*/
this.geometry_ = null;
@@ -126,7 +126,7 @@ RenderBox.prototype.createOrUpdateGeometry = function() {
/**
* @return {ol.geom.Polygon} Geometry.
* @return {module:ol/geom/Polygon~Polygon} Geometry.
*/
RenderBox.prototype.getGeometry = function() {
return this.geometry_;