Skip to content

Instantly share code, notes, and snippets.

@qmzik
Created July 11, 2021 12:23
Show Gist options
  • Save qmzik/53ec6c55ce738a0c0b315085f552b162 to your computer and use it in GitHub Desktop.
Save qmzik/53ec6c55ce738a0c0b315085f552b162 to your computer and use it in GitHub Desktop.
interface Observer<T> {
next: (value: T) => void;
complete: () => void;
error: (err: any) => void;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment