@shopgate/pwa-common-commerce
Version:
Commerce library for the Shopgate Connect PWA.
6 lines • 425 B
JavaScript
import{ERROR_PRODUCT_MEDIA}from"../constants";/**
* Dispatches the ERROR_PRODUCT_MEDIA action.
* @param {string} productId The ID of the product for which the options are requested.
* @param {string} errorCode error code
* @return {Object}
*/var errorProductMedia=function errorProductMedia(productId,errorCode){return{type:ERROR_PRODUCT_MEDIA,productId:productId,errorCode:errorCode};};export default errorProductMedia;