src/App/redux/constants.ts (26 lines of code) (raw):
export const ACTION_TYPE = {
setTheme: '/set-theme',
setDeleteMode: '/set-delete-mode',
setPlanningMode: '/set-planning-mode',
setLaneMode: '/set-lane-mode',
setSettings: '/set-settings',
setSnackbar: '/set-snackbar',
setUserLocation: '/set-user-location',
setCounter: '/set-counter',
setOnboarding: '/set-onboarding',
setTimeTable: '/set-time-table'
};
export const THEME = {
light: 'light',
dark: 'dark'
};
export const TIME_FORMAT = {
H24: 'H24',
H12: 'H12'
};
export const COUNTRYFLAG = {
hide: 'hideCountryFlag',
flag: 'DisplayFlag',
country: 'DisplayCountry',
flagAndCountry: 'DisplayFlagAndCountry'
};