updated address type
This commit is contained in:
Vendored
+8
-7
@@ -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 = {
|
||||
|
||||
Reference in New Issue
Block a user