Skip to content

Instantly share code, notes, and snippets.

@dontpaniclabsgists
Created October 31, 2024 13:58
Show Gist options
  • Save dontpaniclabsgists/5cfb9bc0595c907f96678306119553c8 to your computer and use it in GitHub Desktop.
Save dontpaniclabsgists/5cfb9bc0595c907f96678306119553c8 to your computer and use it in GitHub Desktop.
class NotificationSender {
message: string;
recipient: string;
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