We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11bea7d commit 64f911aCopy full SHA for 64f911a
src/featureStatesReducer.d.ts
@@ -1,6 +1,6 @@
1
-import type { Reducer } from 'redux'
2
-import type { FeatureStates, CreateReducer, FeatureAction } from './index'
+import type { AnyAction, Reducer } from 'redux'
+import type { FeatureStates, CreateReducer } from './index'
3
export default function featureStatesReducer<
4
S extends FeatureStates = FeatureStates,
5
- A extends FeatureAction = FeatureAction
+ A extends AnyAction = AnyAction
6
>(config?: { createReducer?: CreateReducer<S, A> }): Reducer<S, A>
0 commit comments