igniteui-react-core
Version:
Ignite UI React Core.
71 lines (70 loc) • 2.82 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { __extends } from "tslib";
import { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
var ToolActionFieldSelectorAggregationDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ToolActionFieldSelectorAggregationDescription, _super);
function ToolActionFieldSelectorAggregationDescription() {
var _this = _super.call(this) || this;
_this.j = null;
_this.k = null;
_this.l = null;
return _this;
}
ToolActionFieldSelectorAggregationDescription.prototype.get_type = function () {
return "ToolActionFieldSelectorAggregation";
};
Object.defineProperty(ToolActionFieldSelectorAggregationDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionFieldSelectorAggregationDescription.prototype, "label", {
get: function () {
return this.j;
},
set: function (a) {
this.j = a;
this.g("Label");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionFieldSelectorAggregationDescription.prototype, "name", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.g("Name");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionFieldSelectorAggregationDescription.prototype, "operand", {
get: function () {
return this.l;
},
set: function (a) {
this.l = a;
this.g("Operand");
},
enumerable: false,
configurable: true
});
ToolActionFieldSelectorAggregationDescription.$t = markType(ToolActionFieldSelectorAggregationDescription, 'ToolActionFieldSelectorAggregationDescription', Description.$);
ToolActionFieldSelectorAggregationDescription.__marshalByValue = true;
ToolActionFieldSelectorAggregationDescription.__marshalByValueAlias = "ToolActionFieldSelectorAggregation";
return ToolActionFieldSelectorAggregationDescription;
}(Description));
export { ToolActionFieldSelectorAggregationDescription };