igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
64 lines (63 loc) • 2.56 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 { WebPivotDimensionDescription } from "./WebPivotDimensionDescription";
import { markType } from "./type";
/**
* @hidden
*/
var WebPivotDateDimensionDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebPivotDateDimensionDescription, _super);
function WebPivotDateDimensionDescription() {
var _this = _super.call(this) || this;
_this.al = null;
_this.ap = null;
_this.an = null;
return _this;
}
WebPivotDateDimensionDescription.prototype.get_type = function () {
return "WebPivotDateDimension";
};
Object.defineProperty(WebPivotDateDimensionDescription.prototype, "resourceStrings", {
get: function () {
return this.al;
},
set: function (a) {
this.al = a;
this.j("ResourceStrings");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotDateDimensionDescription.prototype, "baseDimension", {
get: function () {
return this.ap;
},
set: function (a) {
this.ap = a;
this.j("BaseDimension");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotDateDimensionDescription.prototype, "options", {
get: function () {
return this.an;
},
set: function (a) {
this.an = a;
this.j("Options");
},
enumerable: false,
configurable: true
});
WebPivotDateDimensionDescription.$t = markType(WebPivotDateDimensionDescription, 'WebPivotDateDimensionDescription', WebPivotDimensionDescription.$);
WebPivotDateDimensionDescription.__marshalByValue1 = true;
WebPivotDateDimensionDescription.__marshalByValueAlias1 = "PivotDateDimension";
return WebPivotDateDimensionDescription;
}(WebPivotDimensionDescription));
export { WebPivotDateDimensionDescription };