igniteui-react-core
Version:
Ignite UI React Core.
64 lines (63 loc) • 2.66 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 { WebBaseEventArgsDetailDescription } from "./WebBaseEventArgsDetailDescription";
import { markType } from "./type";
/**
* @hidden
*/
var WebGroupingDoneEventArgsDetailDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebGroupingDoneEventArgsDetailDescription, _super);
function WebGroupingDoneEventArgsDetailDescription() {
var _this = _super.call(this) || this;
_this.m = null;
_this.n = null;
_this.o = null;
return _this;
}
WebGroupingDoneEventArgsDetailDescription.prototype.get_type = function () {
return "WebGroupingDoneEventArgsDetail";
};
Object.defineProperty(WebGroupingDoneEventArgsDetailDescription.prototype, "expressions", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.g("Expressions");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGroupingDoneEventArgsDetailDescription.prototype, "groupedColumns", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.g("GroupedColumns");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGroupingDoneEventArgsDetailDescription.prototype, "ungroupedColumns", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.g("UngroupedColumns");
},
enumerable: false,
configurable: true
});
WebGroupingDoneEventArgsDetailDescription.$t = markType(WebGroupingDoneEventArgsDetailDescription, 'WebGroupingDoneEventArgsDetailDescription', WebBaseEventArgsDetailDescription.$);
WebGroupingDoneEventArgsDetailDescription.__marshalByValue1 = true;
WebGroupingDoneEventArgsDetailDescription.__marshalByValueAlias1 = "GroupingDoneEventArgsDetail";
return WebGroupingDoneEventArgsDetailDescription;
}(WebBaseEventArgsDetailDescription));
export { WebGroupingDoneEventArgsDetailDescription };