11 lines
236 B
TypeScript
11 lines
236 B
TypeScript
import { TaskPriority } from "./task";
|
|
|
|
export type Notification = {
|
|
text: string;
|
|
time?: string;
|
|
title?: string;
|
|
priority?: TaskPriority;
|
|
tags?: string[];
|
|
};
|
|
|
|
export type NotificationDatabase = Record<string, Notification[]>; |