diff --git a/src/ol/source/Vector.js b/src/ol/source/Vector.js index e8dff54516..1c36c542a6 100644 --- a/src/ol/source/Vector.js +++ b/src/ol/source/Vector.js @@ -46,15 +46,15 @@ export class VectorSourceEvent extends Event { super(type); /** - * The feature being added or removed. + * The added or removed feature for the `ADDFEATURE` and `REMOVEFEATURE` events, `undefined` otherwise. * @type {import("../Feature.js").default|undefined} * @api */ this.feature = opt_feature; /** - * The features being loaded. - * @type {Array>} + * The loaded features for the `FEATURESLOADED` event, `undefined` otherwise. + * @type {Array>|undefined} * @api */ this.features = opt_features;