Skip to content

Instantly share code, notes, and snippets.

@devrkd
Created June 12, 2021 09:23
Show Gist options
  • Save devrkd/9681b9b86f27689b59911393053a38c7 to your computer and use it in GitHub Desktop.
Save devrkd/9681b9b86f27689b59911393053a38c7 to your computer and use it in GitHub Desktop.
Example Observable class in typescript
class Score extends Subject {
private score: number;
public updateScore(score: number)
{
this.score = score;
console.log('got new score.....');
this.notify();
}
public getScore() {
return this.score;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment