Skip to content

Instantly share code, notes, and snippets.

@dontpaniclabsgists
Created October 31, 2024 14:01
Show Gist options
  • Save dontpaniclabsgists/6cc8f7822846a33573e4ed98dfa97700 to your computer and use it in GitHub Desktop.
Save dontpaniclabsgists/6cc8f7822846a33573e4ed98dfa97700 to your computer and use it in GitHub Desktop.
let notification: NotificationSender;
notification = new EmailSender("Project Update", "[email protected]");
notification.send(); // Output: Sending email: 'Project Update' to [email protected]
notification = new SMSSender("Meeting at 3 PM", "123456789");
notification.send(); // Output: Sending SMS: 'Meeting at 3 PM' to 123456789
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment