Skip to content

Instantly share code, notes, and snippets.

@Devcon4
Last active September 3, 2018 01:09
Show Gist options
  • Select an option

  • Save Devcon4/9257f0f0784594d48a3c10c81a3334b6 to your computer and use it in GitHub Desktop.

Select an option

Save Devcon4/9257f0f0784594d48a3c10c81a3334b6 to your computer and use it in GitHub Desktop.
SubjectSource
export class BehaviorSubject<T> extends Subject<T> {
getValue(): T {}
}
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