import {Injectable} from "@angular/core"; @Injectable() export class NotificationService { constructor() { } public showException(message:string) { } public showError(message:string) { } public showWarn(message:string) { } public showInfo(message:string) { } }