@shopgate/pwa-common-commerce
Version:
Commerce library for the Shopgate Connect PWA.
5 lines • 415 B
JavaScript
import{SET_CART_PENDING_PRODUCT_COUNT}from"../constants";/**
* Creates the dispatched SET_CART_PENDING_PRODUCT_COUNT object.
* @param {number} count The cart product count.
* @return {Object} The SET_CART_PENDING_PRODUCT_COUNT action.
*/var setCartProductPendingCount=function setCartProductPendingCount(count){return{type:SET_CART_PENDING_PRODUCT_COUNT,count:count};};export default setCartProductPendingCount;