ng2-appinsights
Version:
App Insights module for Angular 2.0.x
11 lines (10 loc) • 348 B
TypeScript
import { ErrorHandler } from '@angular/core';
import { AppInsightsService } from './appinsights.service';
/**
* App Insights Error Handler
*/
export declare class AppInsightsErrorHandler extends ErrorHandler {
private appInsightsService;
constructor(appInsightsService: AppInsightsService);
handleError(error: any): void;
}