igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
53 lines (52 loc) • 1.68 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 { Base, markType } from "./type";
import { ISummaryResult_$type } from "./ISummaryResult";
/**
* @hidden
*/
export let DefaultSummaryResult = /*@__PURE__*/ (() => {
class DefaultSummaryResult extends Base {
constructor(a, b, c) {
super();
this.a = null;
this.e = null;
this.d = null;
this.b = 0;
this.c = 0;
this.e = a;
this.b = b;
this.d = c;
}
get groupKey() {
return this.a;
}
set groupKey(a) {
this.a = a;
}
get propertyName() {
return this.e;
}
get operand() {
return this.b;
}
get value() {
return this.d;
}
set value(a) {
this.d = a;
}
get summaryIndex() {
return this.c;
}
set summaryIndex(a) {
this.c = a;
}
}
DefaultSummaryResult.$t = markType(DefaultSummaryResult, 'DefaultSummaryResult', Base.$, [ISummaryResult_$type]);
return DefaultSummaryResult;
})();