Created
June 27, 2018 07:52
-
-
Save GrillPhil/e4e99331643963343440a9785be2abbc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Injectable } from "@angular/core"; | |
import { BehaviorSubject } from "rxjs"; | |
@Injectable() | |
export class BlockingProgressService { | |
isLoading: BehaviorSubject<boolean> = new BehaviorSubject(false); | |
loadingMessage: BehaviorSubject<string> = new BehaviorSubject(null); | |
constructor() { } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment