0.1.6Updated a month ago
interface InfinityNotification {
  id: number
  title: string
  body: string
  read: boolean
  urgent?: boolean
  icon?: import("lucide-preact").LucideIcon
  action?: {
    icon?: import("lucide-preact").LucideIcon
    text: string
    link: string
  }
}