Files
your-gold/types/checkout.ts
2025-06-27 16:02:00 +02:00

16 lines
286 B
TypeScript

export interface AddressesList {
address: {
city: string;
country_iso: string;
name: string;
postcode: string;
street: string;
surname: string;
};
address_id: number;
alias: string;
customer_id: number;
is_default: boolean;
is_official: boolean;
}