UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

67 lines (66 loc) 2.12 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 { constructor() { super(); this.i = false; this.j = false; this.h = false; this.g = false; this.f = false; } get_type() { return "WebPivotDateDimensionOptions"; } get type() { return this.get_type(); } get total() { return this.i; } set total(a) { this.i = a; this.e("Total"); } get years() { return this.j; } set years(a) { this.j = a; this.e("Years"); } get quarters() { return this.h; } set quarters(a) { this.h = a; this.e("Quarters"); } get months() { return this.g; } set months(a) { this.g = a; this.e("Months"); } get fullDate() { return this.f; } set fullDate(a) { this.f = a; this.e("FullDate"); } } WebPivotDateDimensionOptionsDescription.$t = markType(WebPivotDateDimensionOptionsDescription, 'WebPivotDateDimensionOptionsDescription', Description.$); return WebPivotDateDimensionOptionsDescription; })();