This commit is contained in:
Nathan Bierema 2020-09-21 13:39:33 -04:00
parent 3140ca0a5e
commit fb45912294

View File

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