Added more cart types

This commit is contained in:
Luis Alvarez
2021-01-25 13:51:15 -05:00
parent 8784e05183
commit a49d0a18f8
5 changed files with 107 additions and 6 deletions

View File

@@ -15,7 +15,7 @@ export type SearchProductsData = {
export type ProductsHandlers = {
getProducts: BigcommerceHandler<
SearchProductsData,
{ search?: 'string'; category?: string; brand?: string; sort?: string }
{ search?: string; category?: string; brand?: string; sort?: string }
>
}