From 0b40de30f2a7ee8af144d2dad718e0b1b350141d Mon Sep 17 00:00:00 2001 From: Mamalizz Date: Tue, 11 Feb 2025 23:23:53 +0330 Subject: [PATCH] updated account types --- frontend/types/global.d.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/frontend/types/global.d.ts b/frontend/types/global.d.ts index 70a7644..9ba04d1 100644 --- a/frontend/types/global.d.ts +++ b/frontend/types/global.d.ts @@ -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 = {