4
0
forked from crowetic/commerce
This commit is contained in:
Belen Curcio
2021-01-07 16:28:50 -03:00
parent e9dfda1e86
commit c780852fbb
6 changed files with 53 additions and 27 deletions

View File

@@ -15,8 +15,8 @@ import removeItem from './handlers/remove-item'
export type { Wishlist, WishlistItem }
export type ItemBody = {
productId: number
variantId: number
productId: Product['id']
variantId: ProductVariant['id']
}
export type AddItemBody = { item: ItemBody }