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

This commit is contained in:
Stefan Horne 2022-03-19 10:40:02 +00:00
parent ee62ea659a
commit 7029062985

View File

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