Created
June 18, 2020 10:48
-
-
Save GarryBrown/9af6367645dd1e05460d09bbc424a9b2 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
class Observable<T> implements Subscribable<T> {...} | |
export interface Subscribable<T> { | |
subscribe(observer?: PartialObserver<T>): Unsubscribable; | |
} | |
type PartialObserver<T> = NextObserver<T> | ErrorObserver<T> | CompletionObserver<T>; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment