mirror of
https://github.com/vercel/commerce.git
synced 2025-03-14 22:42:33 +00:00
More Types
This commit is contained in:
parent
4f0898281d
commit
c3c1ac7cf5
7
framework/types.d.ts
vendored
7
framework/types.d.ts
vendored
@ -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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user