forked from crowetic/commerce
More Types
This commit is contained in:
parent
4259136983
commit
4f0898281d
14
framework/types.d.ts
vendored
14
framework/types.d.ts
vendored
@ -22,3 +22,17 @@ interface ProductPrice {
|
||||
currencyCode: 'USD' | 'ARS'
|
||||
type?: 'price' | 'retail' | 'sale' | string
|
||||
}
|
||||
|
||||
interface Wishlist {
|
||||
id: string
|
||||
products: Pick<Product, ['id', 'name']>[]
|
||||
}
|
||||
|
||||
interface Customer {
|
||||
id: string
|
||||
name: string
|
||||
}
|
||||
|
||||
interface Category {}
|
||||
|
||||
interface Brand {}
|
||||
|
Loading…
x
Reference in New Issue
Block a user