diff options
Diffstat (limited to 'gui/src/types/notifications.ts')
| -rw-r--r-- | gui/src/types/notifications.ts | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gui/src/types/notifications.ts b/gui/src/types/notifications.ts index 760702a..4d0bd3f 100644 --- a/gui/src/types/notifications.ts +++ b/gui/src/types/notifications.ts @@ -1,6 +1,6 @@ import type { Ship } from "./urbit"; -export type NotificationType = +export type NotificationType = | "follow" | "unfollow" | "mention" @@ -8,7 +8,9 @@ export type NotificationType = | "repost" | "react" | "access_request" - | "access_granted"; + | "access_granted" + | "fetching_nostr" + | "nostr_fetch_success"; export interface Notification { id: string; @@ -25,4 +27,4 @@ export interface Notification { export interface NotificationState { notifications: Notification[]; unreadCount: number; -}
\ No newline at end of file +} |
