Files
mqtt-explorer/app/src/actions/UpdateNotifier.ts
2019-01-13 20:49:36 +01:00

16 lines
383 B
TypeScript

import { ActionTypes, CustomAction } from '../reducers'
export const showUpdateNotification = (show: boolean): CustomAction => {
return {
type: ActionTypes.showUpdateNotification,
showUpdateNotification: show,
}
}
export const showUpdateDetails = (show: boolean): CustomAction => {
return {
type: ActionTypes.showUpdateDetails,
showUpdateDetails: show,
}
}