UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

30 lines (29 loc) 650 B
export class IgxAsyncCompletedEventArgs { constructor() { } /** * @hidden */ get i() { return this._implementation; } _provideImplementation(i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); } onImplementationCreated() { } get errorMessage() { if (this.i.error != null) { return this.i.error.message; } return null; } get cancelled() { return this.i.cancelled; } get userState() { return this.i.userState; } }