diff --git a/options/ngeox.js b/options/ngeox.js index 55e2797c131..2437812fe65 100644 --- a/options/ngeox.js +++ b/options/ngeox.js @@ -2653,3 +2653,11 @@ ngeox.WfsPermalinkData; * @typedef {function(string):!ngeo.print.Service} */ ngeox.CreatePrint; + +/** + * @typedef {{ + * text: (string), + * value: (string) + * }} + */ +ngeox.FilterCondition; diff --git a/src/filter/component.js b/src/filter/component.js index 0971a032a79..f9062b00932 100644 --- a/src/filter/component.js +++ b/src/filter/component.js @@ -146,7 +146,7 @@ ngeo.filter.component.FilterController_ = class { // === Inner properties === /** - * @type {Array.} + * @type {Array.} * @export */ this.conditions = [ @@ -325,7 +325,7 @@ ngeo.filter.component.FilterController_ = class { /** - * @param {!ngeo.filter.component.Condition} condition Condition to set. + * @param {!ngeox.FilterCondition} condition Condition to set. * @export */ setCondition(condition) { @@ -419,11 +419,3 @@ ngeo.filter.component.FilterController_ = class { }; ngeo.filter.component.controller('ngeoFilterController', ngeo.filter.component.FilterController_); - -/** - * @typedef {{ - * text: (string), - * value: (string) - * }} - */ -ngeo.filter.component.Condition;