More Types

This commit is contained in:
Belen Curcio 2021-01-09 12:07:17 -03:00
parent 4f0898281d
commit c3c1ac7cf5

View File

@ -25,7 +25,12 @@ interface ProductPrice {
interface Wishlist {
id: string
products: Pick<Product, ['id', 'name']>[]
products: Pick<Product, 'id' | 'name' | 'prices'>[]
}
interface Wishlist {
id: string
products: Pick<Product, 'id' | 'name' | 'prices'>[]
}
interface Customer {