feat(core): add GBP currency code to product price type (#717)

Co-authored-by: Stefan Horne <stefanhorne@gmail.com>
This commit is contained in:
Stefan Horne
2022-03-23 15:29:13 +00:00
committed by GitHub
parent ee62ea659a
commit fee16e795c

View File

@@ -5,7 +5,7 @@ export type ProductImage = {
export type ProductPrice = { export type ProductPrice = {
value: number value: number
currencyCode?: 'USD' | 'EUR' | 'ARS' | string currencyCode?: 'USD' | 'EUR' | 'ARS' | 'GBP' | string
retailPrice?: number retailPrice?: number
salePrice?: number salePrice?: number
listPrice?: number listPrice?: number