Skip to content

Instantly share code, notes, and snippets.

@devrkd
Created June 12, 2021 08:54
Show Gist options
  • Save devrkd/818fd9c76820757679871c0dc26f3240 to your computer and use it in GitHub Desktop.
Save devrkd/818fd9c76820757679871c0dc26f3240 to your computer and use it in GitHub Desktop.
Subject Interface
interface Observable {
subscribe(observer: Observer): void;
unsubscribe(observer: Observer): void;
notify(): void;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment