(text: string, url: string | null = null, dismissable = true)
| 9 | } |
| 10 | |
| 11 | export function addNotificationMessage(text: string, url: string | null = null, dismissable = true): HyperActions { |
| 12 | return { |
| 13 | type: NOTIFICATION_MESSAGE, |
| 14 | text, |
| 15 | url, |
| 16 | dismissable |
| 17 | }; |
| 18 | } |