Skip to content

Instantly share code, notes, and snippets.

@devmobasa
Last active April 26, 2017 04:55
Show Gist options
  • Select an option

  • Save devmobasa/73fa1c27970f90d83bfbfaa09e9a2445 to your computer and use it in GitHub Desktop.

Select an option

Save devmobasa/73fa1c27970f90d83bfbfaa09e9a2445 to your computer and use it in GitHub Desktop.
Simple observer interface - Coding Blast - www.codingblast.com
interface ISimpleObserver<T> {
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