PromucFlow_constructor/app/client/src/actions/browserRequestActions.ts

9 lines
253 B
TypeScript
Raw Normal View History

import { ReduxActionTypes } from "ee/constants/ReduxActionConstants";
export const setUserCurrentGeoLocation = (position: GeolocationPosition) => {
return {
type: ReduxActionTypes.SET_USER_CURRENT_GEO_LOCATION,
payload: { position },
};
};