igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
53 lines (52 loc) • 1.87 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let DataGridSummaryResultDescription = /*@__PURE__*/ (() => {
class DataGridSummaryResultDescription extends Description {
constructor() {
super();
this.l = null;
this.i = null;
this.g = 0;
}
get_type() {
return "DataGridSummaryResult";
}
get type() {
return this.get_type();
}
get groupKeyRef() {
return this.l;
}
set groupKeyRef(a) {
this.l = a;
this.e("GroupKeyRef");
}
get value() {
return this.i;
}
set value(a) {
this.i = a;
this.e("Value");
}
get summaryIndex() {
return this.g;
}
set summaryIndex(a) {
this.g = a;
this.e("SummaryIndex");
}
}
DataGridSummaryResultDescription.$t = markType(DataGridSummaryResultDescription, 'DataGridSummaryResultDescription', Description.$);
DataGridSummaryResultDescription.__marshalByValue = true;
DataGridSummaryResultDescription.__marshalByValueAlias = "DefaultSummaryResult";
return DataGridSummaryResultDescription;
})();