redux-devtools/packages/redux-devtools-chart-monitor/src/actions.ts
2020-09-21 21:23:38 -04:00

7 lines
213 B
TypeScript

export const TOGGLE_VISIBILITY =
'@@redux-devtools-log-monitor/TOGGLE_VISIBILITY';
interface ToggleVisibilityAction {
type: typeof TOGGLE_VISIBILITY;
}
export type ChartMonitorAction = ToggleVisibilityAction;