igniteui-react-grids
Version:
Ignite UI React grid components.
34 lines (33 loc) • 1.44 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 { SummaryOperand } from "./SummaryOperand";
import { markType } from "igniteui-react-core";
import { SummaryResult } from "./SummaryResult";
/**
* @hidden
*/
export let NumberSummaryOperand = /*@__PURE__*/ (() => {
class NumberSummaryOperand extends SummaryOperand {
k(a) {
return (this.nativeElement.min(this.c.i(a)));
}
j(a) {
return (this.nativeElement.max(this.c.i(a)));
}
l(a) {
return (this.nativeElement.sum(this.c.i(a)));
}
i(a) {
return (this.nativeElement.average(this.c.i(a)));
}
h(a, b, c, d) {
return this.c.g(this.nativeElement.operate(this.c.i(a), this.c.i(b), this.c.i(c), this.c.i(d)), (e) => new SummaryResult());
}
}
NumberSummaryOperand.$t = /*@__PURE__*/ markType(NumberSummaryOperand, 'NumberSummaryOperand', SummaryOperand.$);
return NumberSummaryOperand;
})();