blob: c8dcd72e2a2a637cc0ab34f849a442d1fb68c0cd [file] [log] [blame]
import { Injectable } from '@angular/core';
import { Subject } from "rxjs";
@Injectable({
providedIn: 'root'
})
export class ProgressBarService {
public showProgressBar = new Subject();
constructor() { }
public stopProgressBar() {
this.showProgressBar.next(false);
}
public startProgressBar() {
this.showProgressBar.next(true);
}
}