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