igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
50 lines (49 loc) • 1.9 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 { WebPivotDimensionDescription } from "./WebPivotDimensionDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let WebPivotDateDimensionDescription = /*@__PURE__*/ (() => {
class WebPivotDateDimensionDescription extends WebPivotDimensionDescription {
constructor() {
super();
this.al = null;
this.ap = null;
this.an = null;
}
get_type() {
return "WebPivotDateDimension";
}
get resourceStrings() {
return this.al;
}
set resourceStrings(a) {
this.al = a;
this.j("ResourceStrings");
}
get baseDimension() {
return this.ap;
}
set baseDimension(a) {
this.ap = a;
this.j("BaseDimension");
}
get options() {
return this.an;
}
set options(a) {
this.an = a;
this.j("Options");
}
}
WebPivotDateDimensionDescription.$t = markType(WebPivotDateDimensionDescription, 'WebPivotDateDimensionDescription', WebPivotDimensionDescription.$);
WebPivotDateDimensionDescription.__marshalByValue1 = true;
WebPivotDateDimensionDescription.__marshalByValueAlias1 = "PivotDateDimension";
return WebPivotDateDimensionDescription;
})();