UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

66 lines (65 loc) 2.29 kB
/* 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.ah = false; this.ak = null; this.aa = null; this.ae = null; this.ac = null; } get_type() { return "WebPivotDateDimension"; } get enabled() { return this.ah; } set enabled(a) { this.ah = a; this.e("Enabled"); } get dataType() { return this.ak; } set dataType(a) { this.ak = a; this.e("DataType"); } get resourceStrings() { return this.aa; } set resourceStrings(a) { this.aa = a; this.e("ResourceStrings"); } get inBaseDimension() { return this.ae; } set inBaseDimension(a) { this.ae = a; this.e("InBaseDimension"); } get inOptions() { return this.ac; } set inOptions(a) { this.ac = a; this.e("InOptions"); } } WebPivotDateDimensionDescription.$t = markType(WebPivotDateDimensionDescription, 'WebPivotDateDimensionDescription', WebPivotDimensionDescription.$); WebPivotDateDimensionDescription.__marshalByValue1 = true; WebPivotDateDimensionDescription.__marshalByValueAlias1 = "PivotDateDimension"; return WebPivotDateDimensionDescription; })();