igniteui-react-core
Version:
Ignite UI React Core.
35 lines (34 loc) • 1.3 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 { Base, markType } from "./type";
import { HighlightingState } from "./HighlightingState";
/**
* @hidden
*/
var HighlightingInfo = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(HighlightingInfo, _super);
function HighlightingInfo() {
var _this = _super.call(this) || this;
_this.h = 0;
_this.g = 0;
_this.f = 0;
_this.a = 0;
_this.e = 0;
_this.d = false;
_this.c = false;
_this.b = false;
_this.i = null;
_this.a = HighlightingState.outward;
_this.e = 0;
_this.d = false;
return _this;
}
HighlightingInfo.$t = markType(HighlightingInfo, 'HighlightingInfo');
return HighlightingInfo;
}(Base));
export { HighlightingInfo };