-
-
Save balajek/b91fdd5333330c206891cc1c73e779bf to your computer and use it in GitHub Desktop.
Basic notification type options
This file contains 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
var basicNotificationOptions = { | |
"type": "basic", | |
"iconUrl": "icon.png", | |
"title": "Basic title", | |
"message": "Basic message", | |
"contextMessage": "Basic context message", | |
"buttons": [{ "title": "Yes", "iconUrl": "ok.png" }, { "title": "No", "iconUrl": "cancel.png" }], | |
"requireInteraction": false | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment