mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-03-04 03:05:46 +03:00
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;
|