added notification type

This commit is contained in:
Mamalizz
2025-05-25 00:20:13 +03:30
parent 725a93a456
commit dd57b6eadc
+8
View File
@@ -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;
};
}