mirror of
https://github.com/vercel/commerce.git
synced 2025-06-28 17:31:22 +00:00
14 lines
237 B
TypeScript
14 lines
237 B
TypeScript
export type Billing = {
|
|
first_name: string;
|
|
last_name: string;
|
|
company: string;
|
|
address_1: string;
|
|
address_2: string;
|
|
city: string;
|
|
state: string;
|
|
postcode: string;
|
|
country: string;
|
|
email: string;
|
|
phone: string;
|
|
};
|