Fix enum types

This commit is contained in:
ahocevar
2018-04-21 10:48:38 +02:00
parent 417dd85f83
commit c23a5086ae
20 changed files with 87 additions and 50 deletions
+2 -2
View File
@@ -69,7 +69,7 @@ const BaseLayer = function(options) {
/**
* The layer type.
* @type {module:ol/LayerType~LayerType}
* @type {module:ol/LayerType}
* @protected;
*/
this.type;
@@ -81,7 +81,7 @@ inherits(BaseLayer, BaseObject);
/**
* Get the layer type (used when creating a layer renderer).
* @return {module:ol/LayerType~LayerType} The layer type.
* @return {module:ol/LayerType} The layer type.
*/
BaseLayer.prototype.getType = function() {
return this.type;