Skip to content

Instantly share code, notes, and snippets.

@NyaGarcia
Created March 20, 2020 15:07
Show Gist options
  • Save NyaGarcia/4ba1abeee1793fd5fe8153e4e43e3bc0 to your computer and use it in GitHub Desktop.
Save NyaGarcia/4ba1abeee1793fd5fe8153e4e43e3bc0 to your computer and use it in GitHub Desktop.
Exposing subjects to the outside world
class DataService {
pokemonLevel$ = new BehaviorSubject<number>(1);
stop$: Subject<void> = new Subject();
number$ = interval(1000).pipe(takeUntil(this.stop$));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment