diff options
author | Sebastian <sebasjm@gmail.com> | 2023-09-29 16:01:59 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2023-09-29 16:01:59 -0300 |
commit | c10f3f3aded637111176487f95403294b1164633 (patch) | |
tree | c5a1a4bf86bd78b5fd823e09e975b56304115099 /packages/web-util/src/hooks/useNotifications.ts | |
parent | 779ddae8b8c0e1b544ee370ac4d4b366333e7197 (diff) |
notifications exposed
Diffstat (limited to 'packages/web-util/src/hooks/useNotifications.ts')
-rw-r--r-- | packages/web-util/src/hooks/useNotifications.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/web-util/src/hooks/useNotifications.ts b/packages/web-util/src/hooks/useNotifications.ts index 792095b06..e9e8a240b 100644 --- a/packages/web-util/src/hooks/useNotifications.ts +++ b/packages/web-util/src/hooks/useNotifications.ts @@ -54,7 +54,7 @@ export function notifyInfo(title: TranslatedString) { }); } -type Notification = { +export type Notification = { message: NotificationMessage; remove: () => void; }; |