mirror of
https://github.com/vercel/commerce.git
synced 2025-06-28 01:11:24 +00:00
13 lines
260 B
TypeScript
13 lines
260 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;
|
|
}; |