Normalizing more operations

This commit is contained in:
Belen Curcio
2021-01-10 16:25:25 -03:00
parent def1cf0778
commit 1742ae8ea6
2 changed files with 4 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ interface Product extends Entity {
slug: string
path?: string
images: ProductImage[] | any[] | undefined
variants: ProductVariant[] | any[] | undefined
variants: ProductVariant[] | any[] | null | undefined
price: ProductPrice
}
interface ProductImage {