@shopgate/engage
Version:
Shopgate's ENGAGE library.
7 lines • 524 B
JavaScript
import{APP_RATING_RESET_APP_START_COUNT,APP_RATING_INCREASE_APP_START_COUNT}from"../constants";/**
* Increment the app start count
* @return {Object} The dispatched action object.
*/export var increaseAppStartCount=function increaseAppStartCount(){return{type:APP_RATING_INCREASE_APP_START_COUNT};};/**
* Reset the app start count, and increment reset counts
* @return {Object} The dispatched action object.
*/export var resetAppStartCount=function resetAppStartCount(){return{type:APP_RATING_RESET_APP_START_COUNT};};