import { TaskPriority } from "./task"; export type Notification = { text: string; time?: string; title?: string; priority?: TaskPriority; tags?: string[]; }; export type NotificationDatabase = Record;