updated account types

This commit is contained in:
Mamalizz
2025-02-11 23:23:53 +03:30
parent 2c245cdb8c
commit 0b40de30f2
+4 -2
View File
@@ -15,11 +15,13 @@ declare global {
};
type Account = {
profile_photo: File | null;
first_name: string;
last_name: string;
email: string;
profile_photo: string;
phone: string;
gender: string | undefined;
email: string;
birth_date: string;
};
type Product = {