https://github.com/khaliqgant/react-redux-types
Fix for react redux typings
https://github.com/khaliqgant/react-redux-types
Last synced: 5 months ago
JSON representation
Fix for react redux typings
- Host: GitHub
- URL: https://github.com/khaliqgant/react-redux-types
- Owner: khaliqgant
- Created: 2018-09-06T13:11:49.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-09-06T13:12:07.000Z (almost 7 years ago)
- Last Synced: 2025-01-06T13:37:06.357Z (6 months ago)
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
React Redux Types
==================# Why?
* This is a temporary fix for typing issues with react-redux as seen in this
[thread](https://github.com/DefinitelyTyped/DefinitelyTyped/pull/27724#issuecomment-418900310)
* It simply changes:
```
export interface ProviderProps {
/**
* The single Redux store in your application.
*/
store: Store;
}
```
to this
```
export interface ProviderProps {
/**
* The single Redux store in your application.
*/
store: Store;
}
```