0.1.3Updated 6 months ago
import type { LucideIcon } from "lucide-preact";

export interface I_Notification {
  id: number
  title: string
  body: string
  read: boolean
  urgent?: boolean
  icon?: LucideIcon
  action?: {
    icon?: LucideIcon
    text: string
    link: string
  }
}