diff --git a/frontend/types/global.d.ts b/frontend/types/global.d.ts index 76a4f15..f98539f 100644 --- a/frontend/types/global.d.ts +++ b/frontend/types/global.d.ts @@ -287,4 +287,12 @@ declare global { status_detail: string | null; }; }; + + type Notification = { + title: string; + content: string; + created_at: string; + notif_type: "NEWS" | "USER_NOTIF"; + is_read?: string; + }; }