igniteui-react-core
Version:
Ignite UI React Core.
107 lines (106 loc) • 3.48 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 WebPivotKeysDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebPivotKeysDescription, _super);
function WebPivotKeysDescription() {
var _this = _super.call(this) || this;
_this.k = null;
_this.n = null;
_this.j = null;
_this.m = null;
_this.l = null;
_this.o = null;
return _this;
}
WebPivotKeysDescription.prototype.get_type = function () {
return "WebPivotKeys";
};
Object.defineProperty(WebPivotKeysDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotKeysDescription.prototype, "children", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.g("Children");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotKeysDescription.prototype, "records", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.g("Records");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotKeysDescription.prototype, "aggregations", {
get: function () {
return this.j;
},
set: function (a) {
this.j = a;
this.g("Aggregations");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotKeysDescription.prototype, "level", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.g("Level");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotKeysDescription.prototype, "columnDimensionSeparator", {
get: function () {
return this.l;
},
set: function (a) {
this.l = a;
this.g("ColumnDimensionSeparator");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotKeysDescription.prototype, "rowDimensionSeparator", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.g("RowDimensionSeparator");
},
enumerable: false,
configurable: true
});
WebPivotKeysDescription.$t = markType(WebPivotKeysDescription, 'WebPivotKeysDescription', Description.$);
WebPivotKeysDescription.__marshalByValue = true;
WebPivotKeysDescription.__marshalByValueAlias = "PivotKeys";
return WebPivotKeysDescription;
}(Description));
export { WebPivotKeysDescription };