Last active
September 3, 2018 01:09
-
-
Save Devcon4/9257f0f0784594d48a3c10c81a3334b6 to your computer and use it in GitHub Desktop.
SubjectSource
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
| export class BehaviorSubject<T> extends Subject<T> { | |
| getValue(): T {} | |
| } |
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
| export class Subject<T> extends Observable<T> implements SubscriptionLike { | |
| observers: Observer<T>[] = []; | |
| next(value?: T) { } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment