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 = {
value: number
currencyCode?: 'USD' | 'EUR' | 'ARS' | string
currencyCode?: 'USD' | 'EUR' | 'ARS' | 'GBP' | string
retailPrice?: number
salePrice?: number
listPrice?: number