2.13.3: Generic type 'StoreEnhancer' requires 1 type argument(s)
See original GitHub issueWith 2.13.3, I’m getting this error during webpack:
ERROR in [at-loader] ./node_modules/redux-devtools-extension/index.d.ts:159:60
TS2314: Generic type 'StoreEnhancer' requires 1 type argument(s).
ERROR in [at-loader] ./node_modules/redux-devtools-extension/index.d.ts:161:61
TS2314: Generic type 'StoreEnhancer' requires 1 type argument(s).
With 2.13.2, this does not happen.
(Looks like 2.13.3 is not mentioned in releases, so not sure where that’s coming from…)
Issue Analytics
- State:
- Created 5 years ago
- Reactions:2
- Comments:6
Top Results From Across the Web
Generic type requires 1 type argument(s), but only when ...
I wanted to extract this to its own type so I could reuse it in a different function, but it throws and error...
Read more >How To Use Generics in TypeScript - DigitalOcean
TypeScript fully supports generics as a way to introduce type-safety into components that accept arguments and return values whose type will ...
Read more >Documentation - Generics - TypeScript
Here we explicitly set Type to be string as one of the arguments to the function ... as “the generic function loggingIdentity takes...
Read more >CLR Generic Types - Performance is a Feature!
A generic type definition is a class, interface, or value type definition with formal generic parameters. These generic parameters represent types. Each generic...
Read more >generic type 'ɵɵcomponentdeclaration' requires ... - You.com
ts(27,100): error TS2314: Generic type 'ErrorCallback' requires 1 type argument(s). node_modules/@types/filesystem/index.d.ts(35,89) ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
It should be fixed in #520, published as
v2.13.4
. Feel free to reopen the issue if it still not working.Confirming that
v2.13.5
is working 😃