UNPKG

aleph-product-card

Version:

Este es un paquete para pruebas de despliegue NPM

12 lines (11 loc) 338 B
import { OnChangeArgs, Product } from '../interfaces/Product'; interface ProductCart extends Product { count: number; } declare const useShoppingCart: () => { shoppingCart: { [key: string]: ProductCart; }; handleChangeCart: ({ product, count }: OnChangeArgs) => void; }; export default useShoppingCart;