Customer and Cart interfaces

This commit is contained in:
2022-12-05 18:28:46 +01:00
parent 416303b601
commit 6218a0d33c
2 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
export default interface ICart {
client_id: string;
cart_id: number;
lineitem_id: number;
quantity: number;
sku_id: number;
size: string;
price: number;
product_no: number;
name: string;
description: string;
subtext: string;
image: string;
primary_color: string;
}

View File

@@ -0,0 +1,9 @@
export default interface ICustomer {
city: string;
customer_no?: string;
email: string;
first_name: string;
last_name: string;
street_address: string;
zip_code: number;
}