igniteui-react-grids
Version:
Ignite UI React grid components.
28 lines (27 loc) • 1.25 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 DateSummaryOperand = /*@__PURE__*/ (() => {
class DateSummaryOperand extends SummaryOperand {
j(a) {
this.nativeElement.latest(this.c.i(a));
}
i(a) {
this.nativeElement.earliest(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());
}
}
DateSummaryOperand.$t = /*@__PURE__*/ markType(DateSummaryOperand, 'DateSummaryOperand', SummaryOperand.$);
return DateSummaryOperand;
})();