jest-styled-components
jest-styled-components copied to clipboard
All declarations of 'Matchers' must have identical type parameters.
With latest Jest
"@types/jest": "^24.0.21",
Seeing the following TypeScript error
node_modules/@types/jest/index.d.ts(667,15): error TS2428: All declarations of 'Matchers' must have identical type parameters.
node_modules/jest-styled-components/typings/index.d.ts(15,13): error TS2428: All declarations of 'Matchers' must have identical type parameters.
i have got same problem too, can anyone solved this ???
This is probably related to #270
Fixed the problem for now by setting exact version in package.json
to "@types/jest": "24.0.19",
. Note the missing ^
character