Skip to content

Commit

Permalink
fix: fix featureStatesReducer TS type
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards1211 committed Nov 9, 2023
1 parent 11bea7d commit 64f911a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/featureStatesReducer.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Reducer } from 'redux'
import type { FeatureStates, CreateReducer, FeatureAction } from './index'
import type { AnyAction, Reducer } from 'redux'
import type { FeatureStates, CreateReducer } from './index'
export default function featureStatesReducer<
S extends FeatureStates = FeatureStates,
A extends FeatureAction = FeatureAction
A extends AnyAction = AnyAction
>(config?: { createReducer?: CreateReducer<S, A> }): Reducer<S, A>

0 comments on commit 64f911a

Please sign in to comment.