initial commit

This commit is contained in:
2023-11-13 20:41:10 +00:00
commit 180b261e40
18 changed files with 324 additions and 0 deletions

6
src/lib/notif.ts Normal file
View File

@@ -0,0 +1,6 @@
export interface Notification {
id: number,
text: string,
date: Date,
status: { username: string, status: string }[],
}