Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/khaliqgant/react-redux-types
Fix for react redux typings
https://github.com/khaliqgant/react-redux-types
Last synced: 4 days 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 (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-09-06T13:12:07.000Z (over 6 years ago)
- Last Synced: 2024-11-10T03:42:28.715Z (2 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;
}
```