frontend-tutorial-framework/src/app/services/deployment-notification.service.ts

12 lines
221 B
TypeScript

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