Add support for database

This commit is contained in:
2025-01-17 14:05:30 +01:00
parent 3b7307dac3
commit 3919eed679
4 changed files with 62 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import dayjs, { Dayjs } from "dayjs"
export type Notification = {
time?: string;
title: string;
text: string;
};
export type NotificationDatabase = Record<string, Notification[]>;