Created
October 31, 2024 14:01
-
-
Save dontpaniclabsgists/6cc8f7822846a33573e4ed98dfa97700 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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