You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm having some issues here to get the i18SnState reducer to get into my combineReducers() function. TypeScript complains that the type is not compatible with Reducer<IreduxI18nState> because of the state parameter not accepting undefined in the definition.
I'm having some issues here to get the
i18SnState
reducer to get into mycombineReducers()
function. TypeScript complains that the type is not compatible withReducer<IreduxI18nState>
because of the state parameter not acceptingundefined
in the definition.My workaround is this line of code:
I think (not 100% sure) this can be solved by changing the signature of the this line in
index.d.ts
:to
The text was updated successfully, but these errors were encountered: