mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-04-04 04:32:40 +00:00
12 lines
221 B
TypeScript
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() { }
|
|
|
|
}
|