diff --git a/framework/types.d.ts b/framework/types.d.ts index 5d171b5b0..f15bde593 100644 --- a/framework/types.d.ts +++ b/framework/types.d.ts @@ -22,3 +22,17 @@ interface ProductPrice { currencyCode: 'USD' | 'ARS' type?: 'price' | 'retail' | 'sale' | string } + +interface Wishlist { + id: string + products: Pick[] +} + +interface Customer { + id: string + name: string +} + +interface Category {} + +interface Brand {}