$notify
Updated on Aug 29, 2025 2 minutes to readThe Notify Plugin provides methods to display alert messages to the user with different visual styles.
Methods
Method | Description |
---|---|
closeAll | Closes all currently displayed notifications. |
danger | Displays a danger style notification. |
info | Displays an informational style notification. |
success | Displays a success style notification. |
warning | Displays a warning style notification. |
Methods Details
closeAll()
• Type
() => void
• Details
Closes all currently active notifications in the system.
danger()
• Type
(message: string) => void
• Details
Expects a message string (can contain HTML code) to display in the alert dialog.
Shows a danger style notification.
info()
• Type
(message: string) => void
• Details
Expects a message string (can contain HTML code) to display in the alert dialog.
Shows an informational style notification.
success()
• Type
(message: string) => void
• Details
Expects a message string (can contain HTML code) to display in the alert dialog.
Shows a success style notification.
warning()
• Type
(message: string) => void
• Details
Expects a message string (can contain HTML code) to display in the alert dialog.
Shows a warning style notification.