mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-28 04:23:56 +03:00
761baba0aa
* chart-monitor * and that
7 lines
213 B
TypeScript
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;
|