UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

27 lines (26 loc) 617 B
export class IgxTriangulationStatusEventArgs { constructor() { } /** * @hidden */ get i() { return this._implementation; } onImplementationCreated() { } _provideImplementation(i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); } /** * The current status from 0 to 100 of the progressive triangulation. */ get currentStatus() { return this.i.currentStatus; } set currentStatus(v) { this.i.currentStatus = +v; } }