Fix render/Feature scope issue

This commit is contained in:
Andreas Hocevar
2020-04-14 20:46:49 +02:00
parent b0393a098a
commit 6426cd10dc

View File

@@ -305,14 +305,14 @@ class RenderFeature {
this.flatCoordinates_
);
}
/**
* @return {Array<number>|Array<Array<number>>} Ends or endss.
*/
getEnds() {
return this.ends_;
}
}
/**
* @return {Array<number>|Array<Array<number>>} Ends or endss.
*/
RenderFeature.prototype.getEnds = function () {
return this.ends_;
};
RenderFeature.prototype.getEndss = RenderFeature.prototype.getEnds;
/**