Skip to content

Instantly share code, notes, and snippets.

@dontpaniclabsgists
Created October 31, 2024 14:00
Show Gist options
  • Save dontpaniclabsgists/058211e7529c32a888231665db34d032 to your computer and use it in GitHub Desktop.
Save dontpaniclabsgists/058211e7529c32a888231665db34d032 to your computer and use it in GitHub Desktop.
class SMSSender extends NotificationSender {
send(): void {
console.log(`Sending SMS: '${this.message}' to ${this.recipient}`);
}
}
class EmailSender extends NotificationSender {
send(): void {
console.log(`Sending email: '${this.message}' to ${this.recipient}`);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment