Files
frontend-tutorial-framework/src/app/services/deployment-notification.service.ts
2019-08-12 16:51:51 +02:00

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() {}
}