shopify-storefront
Version:
Wrapper for the Shopify's Storefront API.
14 lines • 347 B
TypeScript
export interface IShippingAddress {
address1?: string;
address2?: string;
city?: string;
company?: string;
country?: string;
firstName?: string;
lastName?: string;
phone?: string;
province?: string;
zip?: string;
}
export default IShippingAddress;
//# sourceMappingURL=IShippingAddress.d.ts.map