mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-27 00:19:55 +03:00
Fix another reference
This commit is contained in:
parent
0bac79a3b5
commit
38e89aa0cb
|
@ -1,7 +1,12 @@
|
|||
import mapValues from 'lodash/mapValues';
|
||||
import { PerformAction } from '@redux-devtools/core';
|
||||
import { Action } from 'redux';
|
||||
import { State } from '../app/reducers/instances';
|
||||
|
||||
interface State {
|
||||
actionsById: { [actionId: number]: PerformAction<Action<unknown>> };
|
||||
computedStates: { state: unknown; error?: string }[];
|
||||
stagedActionIds: number[];
|
||||
}
|
||||
|
||||
export const FilterState = {
|
||||
DO_NOT_FILTER: 'DO_NOT_FILTER',
|
||||
|
|
Loading…
Reference in New Issue
Block a user