| 6 | import { useIsMobile } from "@/hooks/useIsMobile"; |
| 7 | |
| 8 | export interface Notification { |
| 9 | id: string; |
| 10 | timestamp: string; |
| 11 | title: string; |
| 12 | message: string; |
| 13 | type: "info" | "success" | "warning" | "error"; |
| 14 | read: boolean; |
| 15 | link?: string; |
| 16 | metadata?: Record<string, unknown>; |
| 17 | } |
| 18 | |
| 19 | const typeConfig: Record< |
| 20 | Notification["type"], |
nothing calls this directly
no outgoing calls
no test coverage detected