updated address type

This commit is contained in:
Mamalizz
2025-02-14 01:22:45 +03:30
parent 8588998aef
commit bc0f4abdea
+8 -7
View File
@@ -95,13 +95,14 @@ declare global {
type Address = {
id: number | undefined;
province: string;
city: string;
postal_code: string;
address: string;
phone: string;
name: string;
for_me: "خیر" | "بله";
province: string | undefined;
city: string | undefined;
postal_code: string | undefined;
address: string | undefined;
phone: string | undefined;
name: string | undefined;
for_me: "خیر" | "بله" | boolean;
is_main: boolean;
};
type DeliveryMethod = {