From fb45912294745511fadd321ca3d069205da91793 Mon Sep 17 00:00:00 2001 From: Nathan Bierema Date: Mon, 21 Sep 2020 13:39:33 -0400 Subject: [PATCH] and that --- packages/redux-devtools-chart-monitor/src/actions.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/redux-devtools-chart-monitor/src/actions.ts b/packages/redux-devtools-chart-monitor/src/actions.ts index 0eefa3a9..062215ed 100644 --- a/packages/redux-devtools-chart-monitor/src/actions.ts +++ b/packages/redux-devtools-chart-monitor/src/actions.ts @@ -1,2 +1,6 @@ export const TOGGLE_VISIBILITY = '@@redux-devtools-log-monitor/TOGGLE_VISIBILITY'; +interface ToggleVisibilityAction { + type: typeof TOGGLE_VISIBILITY; +} +export type ChartMonitorAction = ToggleVisibilityAction;