UNPKG

ehandler

Version:

Exception handler for Angular Applications

17 lines (16 loc) 429 B
import { HttpClient } from '@angular/common/http'; import { Config } from './const/config'; export declare class HookService { private http; private config; constructor(http: HttpClient, config: Config); private bugged; /** * Send Message */ sendMessage(payload: any): void; /** * Send Exception to hook */ exceptionNotify(error: any, couse?: string): void; }