-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TypeScript declarations incompatible with Redux 4.0 #492
Comments
I believe the answer is in this issue reduxjs/redux#2740. In the meantime you can "patch" the type declarations by adding your own import * as redux from 'redux';
declare module 'redux' {
export type GenericStoreEnhancer = any;
} |
It looks like Sounds to me like this library does need to be updated after all as I don't think they'll bring the deleted type back. |
Pushed a pull request #493 to get this sorted quicker. |
This was referenced Jul 21, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Devtools seem to be broken after updating Redux to v4. I am now getting the following error:
So far I haven't found a way to fix it so ended up uninstalling
redux-devtools-extension
to be able to use the latest version of Redux but, obviously, it would be nice to have the tools working again!The text was updated successfully, but these errors were encountered: