UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

67 lines (66 loc) 2.1 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 SummaryDataDescription = /*@__PURE__*/ (() => { class SummaryDataDescription extends Description { constructor() { super(); this.h = null; this.j = null; this.i = null; this.f = null; this.g = null; } get_type() { return "SummaryData"; } get type() { return this.get_type(); } get summaryName() { return this.h; } set summaryName(a) { this.h = a; this.e("SummaryName"); } get summaryValueRef() { return this.j; } set summaryValueRef(a) { this.j = a; this.e("SummaryValueRef"); } get summaryOperand() { return this.i; } set summaryOperand(a) { this.i = a; this.e("SummaryOperand"); } get formattedText() { return this.f; } set formattedText(a) { this.f = a; this.e("FormattedText"); } get formattedValue() { return this.g; } set formattedValue(a) { this.g = a; this.e("FormattedValue"); } } SummaryDataDescription.$t = markType(SummaryDataDescription, 'SummaryDataDescription', Description.$); return SummaryDataDescription; })();