import { Injectable } from '@angular/core'; import { Subject } from 'rxjs'; @Injectable() export class DeploymentNotificationService { deploying: Subject = new Subject(); constructor() {} }