I use webpack with Babel to build my project. I got the following error after upgrading to redux-saga 1.1.1 and typescript 3.6:
ERROR in .../app/node_modules/redux-saga-test-plan/effects.d.ts
ERROR in .../app/node_modules/redux-saga-test-plan/effects.d.ts(89,39):
TS2314: Generic type 'CallEffectDescriptor<RT>' requires 1 type argument(s).
ERROR in .../app/node_modules/redux-saga-test-plan/effects.d.ts
ERROR in .../app/node_modules/redux-saga-test-plan/effects.d.ts(90,35):
TS2314: Generic type 'CallEffectDescriptor<RT>' requires 1 type argument(s).
ERROR in .../app/node_modules/redux-saga-test-plan/effects.d.ts
ERROR in .../app/node_modules/redux-saga-test-plan/effects.d.ts(92,37):
TS2314: Generic type 'CallEffectDescriptor<RT>' requires 1 type argument(s).
ERROR in .../app/node_modules/redux-saga-test-plan/effects.d.ts
ERROR in .../app/node_modules/redux-saga-test-plan/effects.d.ts(93,37):
TS2314: Generic type 'CallEffectDescriptor<RT>' requires 1 type argument(s).
ERROR in .../app/node_modules/redux-saga-test-plan/effects.d.ts
ERROR in .../app/node_modules/redux-saga-test-plan/effects.d.ts(94,39):
TS2314: Generic type 'CallEffectDescriptor<RT>' requires 1 type argument(s).
ERROR in .../app/node_modules/redux-saga-test-plan/providers.d.ts
ERROR in .../app/node_modules/redux-saga-test-plan/providers.d.ts(16,27):
TS2314: Generic type 'CallEffectDescriptor<RT>' requires 1 type argument(s).
ERROR in .../app/node_modules/redux-saga-test-plan/providers.d.ts
ERROR in .../app/node_modules/redux-saga-test-plan/providers.d.ts(19,26):
TS2314: Generic type 'CallEffectDescriptor<RT>' requires 1 type argument(s).
ERROR in .../app/node_modules/redux-saga-test-plan/providers.d.ts
ERROR in .../app/node_modules/redux-saga-test-plan/providers.d.ts(21,27):
TS2314: Generic type 'ForkEffectDescriptor<RT>' requires 1 type argument(s).
ERROR in .../app/node_modules/redux-saga-test-plan/providers.d.ts
ERROR in .../app/node_modules/redux-saga-test-plan/providers.d.ts(28,28):
TS2314: Generic type 'CallEffectDescriptor<RT>' requires 1 type argument(s).
I use webpack with Babel to build my project. I got the following error after upgrading to redux-saga 1.1.1 and typescript 3.6:
package.json:
"typescript": "^3.6.3"
"redux-saga": "^1.1.1"
"redux-saga-test-plan": "^4.0.0-rc.1",