From 3d160793bcfd80c61aa678e85ff0b4d6bf82175a Mon Sep 17 00:00:00 2001 From: marzban-dev Date: Sun, 26 Jan 2025 20:11:24 +0330 Subject: [PATCH] Add account type --- frontend/types/global.d.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/frontend/types/global.d.ts b/frontend/types/global.d.ts index b7f759f..a7ee531 100644 --- a/frontend/types/global.d.ts +++ b/frontend/types/global.d.ts @@ -14,6 +14,14 @@ declare global { content: string; }; + type Account = { + first_name: string; + last_name: string; + email: string; + profile_photo: string; + phone: string; + } + type Product = { id: number; price: number;