@shopgate/pwa-common-commerce
Version:
Commerce library for the Shopgate Connect PWA.
5 lines • 354 B
JavaScript
import{ADD_COUPONS_TO_CART}from"../constants";/**
* Creates the dispatched ADD_COUPONS_TO_CART action object.
* @param {Array} couponIds The coupon ids.
* @returns {Object} The dispatched action object.
*/var addCouponsToCart=function addCouponsToCart(couponIds){return{type:ADD_COUPONS_TO_CART,couponIds:couponIds};};export default addCouponsToCart;