frontend-tutorial-framework/src/app/services/deployment-notification.ser...

10 lines
214 B
TypeScript

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