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;