diff --git a/framework/types.d.ts b/framework/types.d.ts index b804b68a5..2f1329071 100644 --- a/framework/types.d.ts +++ b/framework/types.d.ts @@ -23,7 +23,7 @@ interface ProductPrice { type?: 'price' | 'retail' | 'sale' | string } -interface Wishlist { +interface Cart { id: string products: Pick[] } @@ -33,11 +33,22 @@ interface Wishlist { products: Pick[] } +interface Order {} + interface Customer { id: string name: string + email: string } -interface Category {} +interface Category { + id: string + name: string +} -interface Brand {} +interface Brand { + id: string + name: string +} + +type Features = 'wishlist' | 'customer'