@shopgate/engage
Version:
Shopgate's ENGAGE library.
7 lines • 504 B
JavaScript
import{APP_RATING_SET_TIMER_START_TIME,APP_RATING_INCREASE_TIMER_REPEATS}from"../constants";/**
* Reset the orders placed count, and increment reset counts
* @return {Object} The dispatched action object.
*/export var resetTimerState=function resetTimerState(){return{type:APP_RATING_INCREASE_TIMER_REPEATS};};/**
* Sets the timer start time
* @return {Object} The dispatched action object.
*/export var setTimerStartTime=function setTimerStartTime(){return{type:APP_RATING_SET_TIMER_START_TIME};};