TypeScriptで問題が発生し、反応+ redux
Could not find a declaration file for module 'react-redux'. '/home/andrew/miramir/src/js/node_modules/react-redux/lib/index.js' implicitly has an 'any' type.
プロバイダーをreact-reduxから取得しようとしています
import { Provider } from 'react-redux';
どうすれば修正できますか?ありがとう
次のように、必要なタイプをプロジェクトに追加するだけです。
npm install --save-dev @types/react-redux
で修正
const { Provider } = require('react-redux');