From 4f0845b03a0a27158868d47ec17d3cee66bf1d46 Mon Sep 17 00:00:00 2001 From: mike-000 <49240900+mike-000@users.noreply.github.com> Date: Wed, 29 Jun 2022 10:39:38 +0100 Subject: [PATCH] Change return type to Feature --- src/ol/format/WKB.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ol/format/WKB.js b/src/ol/format/WKB.js index 42138e7c99..38134aa861 100644 --- a/src/ol/format/WKB.js +++ b/src/ol/format/WKB.js @@ -700,7 +700,7 @@ class WKB extends FeatureFormat { * * @param {string|ArrayBuffer|ArrayBufferView} source Source. * @param {import("./Feature.js").ReadOptions} [opt_options] Read options. - * @return {import("../Feature.js").FeatureLike} Feature. + * @return {import("../Feature.js").default} Feature. * @api */ readFeature(source, opt_options) { @@ -714,7 +714,7 @@ class WKB extends FeatureFormat { * * @param {string|ArrayBuffer|ArrayBufferView} source Source. * @param {import("./Feature.js").ReadOptions} [opt_options] Read options. - * @return {Array} Features. + * @return {Array} Features. * @api */ readFeatures(source, opt_options) {