Skip to content

Instantly share code, notes, and snippets.

@dontpaniclabsgists
Created October 31, 2024 13:58
Show Gist options
  • Save dontpaniclabsgists/977a703041b2fac43d6cf5d6752a470a to your computer and use it in GitHub Desktop.
Save dontpaniclabsgists/977a703041b2fac43d6cf5d6752a470a to your computer and use it in GitHub Desktop.
class NotificationSender {
message: string;
recipient: string;
constructor(message: string, recipient: string) {
this.message = message;
this.recipient = recipient;
}
send(): void {
console.log(`Sending message: '${this.message}' to ${this.recipient}`);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment