UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

34 lines (33 loc) 1.47 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 { EventArgs, markType } from "./type"; /** * @hidden */ var TriangulationStatusEventArgs = /** @class */ /*@__PURE__*/ (function (_super) { __extends(TriangulationStatusEventArgs, _super); function TriangulationStatusEventArgs(a) { var _this = _super.call(this) || this; _this._currentStatus = 0; _this.currentStatus = a; return _this; } Object.defineProperty(TriangulationStatusEventArgs.prototype, "currentStatus", { get: function () { return this._currentStatus; }, set: function (a) { this._currentStatus = a; }, enumerable: false, configurable: true }); TriangulationStatusEventArgs.$t = markType(TriangulationStatusEventArgs, 'TriangulationStatusEventArgs', EventArgs.$); return TriangulationStatusEventArgs; }(EventArgs)); export { TriangulationStatusEventArgs };