igniteui-react-grids
Version:
Ignite UI React grid components.
32 lines (31 loc) • 1.55 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 { __extends } from "tslib";
import { SummaryOperand } from "./SummaryOperand";
import { markType } from "igniteui-react-core";
import { SummaryResult } from "./SummaryResult";
/**
* @hidden
*/
var TimeSummaryOperand = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(TimeSummaryOperand, _super);
function TimeSummaryOperand() {
return _super !== null && _super.apply(this, arguments) || this;
}
TimeSummaryOperand.prototype.j = function (a) {
this.nativeElement.latestTime(this.c.i(a));
};
TimeSummaryOperand.prototype.i = function (a) {
this.nativeElement.earliestTime(this.c.i(a));
};
TimeSummaryOperand.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(); });
};
TimeSummaryOperand.$t = markType(TimeSummaryOperand, 'TimeSummaryOperand', SummaryOperand.$);
return TimeSummaryOperand;
}(SummaryOperand));
export { TimeSummaryOperand };