Created
June 17, 2020 11:03
-
-
Save GarryBrown/4a4ac2cf67f4cd0f7aa8c939b763f79d 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 Subscriber<T> extends Subscription implements Observer<T> {...} | |
interface Observer<T> { | |
closed?: boolean; | |
next: (value: T) => void; | |
error: (err: any) => void; | |
complete: () => void; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment