UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

37 lines (36 loc) 1.25 kB
var IgxTriangulationStatusEventArgs = /** @class */ /*@__PURE__*/ (function () { function IgxTriangulationStatusEventArgs() { } Object.defineProperty(IgxTriangulationStatusEventArgs.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); IgxTriangulationStatusEventArgs.prototype.onImplementationCreated = function () { }; IgxTriangulationStatusEventArgs.prototype._provideImplementation = function (i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); }; Object.defineProperty(IgxTriangulationStatusEventArgs.prototype, "currentStatus", { /** * The current status from 0 to 100 of the progressive triangulation. */ get: function () { return this.i.currentStatus; }, set: function (v) { this.i.currentStatus = +v; }, enumerable: false, configurable: true }); return IgxTriangulationStatusEventArgs; }()); export { IgxTriangulationStatusEventArgs };