UNPKG

igniteui-react-core

Version:
67 lines (66 loc) 2.06 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ export let WebPivotDateDimensionOptionsDescription = /*@__PURE__*/ (() => { class WebPivotDateDimensionOptionsDescription extends Description { get_type() { return "WebPivotDateDimensionOptions"; } get type() { return this.get_type(); } constructor() { super(); this.n = false; this.o = false; this.m = false; this.l = false; this.k = false; } get total() { return this.n; } set total(a) { this.n = a; this.j("Total"); } get years() { return this.o; } set years(a) { this.o = a; this.j("Years"); } get quarters() { return this.m; } set quarters(a) { this.m = a; this.j("Quarters"); } get months() { return this.l; } set months(a) { this.l = a; this.j("Months"); } get fullDate() { return this.k; } set fullDate(a) { this.k = a; this.j("FullDate"); } } WebPivotDateDimensionOptionsDescription.$t = /*@__PURE__*/ markType(WebPivotDateDimensionOptionsDescription, 'WebPivotDateDimensionOptionsDescription', Description.$); return WebPivotDateDimensionOptionsDescription; })();