UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

32 lines (31 loc) 1.54 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 { __extends } from "tslib"; import { SummaryOperand } from "./SummaryOperand"; import { markType } from "igniteui-react-core"; import { SummaryResult } from "./SummaryResult"; /** * @hidden */ var DateSummaryOperand = /** @class */ /*@__PURE__*/ (function (_super) { __extends(DateSummaryOperand, _super); function DateSummaryOperand() { return _super !== null && _super.apply(this, arguments) || this; } DateSummaryOperand.prototype.j = function (a) { this.nativeElement.latest(this.c.i(a)); }; DateSummaryOperand.prototype.i = function (a) { this.nativeElement.earliest(this.c.i(a)); }; DateSummaryOperand.prototype.h = function (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)), function (e) { return new SummaryResult(); }); }; DateSummaryOperand.$t = markType(DateSummaryOperand, 'DateSummaryOperand', SummaryOperand.$); return DateSummaryOperand; }(SummaryOperand)); export { DateSummaryOperand };