(notification: NotificationCreate)
| 8 | * dispatch and has been removed. |
| 9 | */ |
| 10 | export const pushNotification = (notification: NotificationCreate) => { |
| 11 | if (typeof window !== "undefined") { |
| 12 | window.dispatchEvent( |
| 13 | new CustomEvent<NotificationCreate>(VueShellBridgeEvent.notification, { |
| 14 | detail: notification, |
| 15 | }) |
| 16 | ); |
| 17 | } |
| 18 | }; |
no outgoing calls
no test coverage detected