We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using the types from DefinitelyTyped, it creates the duck with the types
new Duck<Duck1, AnyObject, AnyObject, AnyObject, AnyObject, AnyObject, [], AnyObject>(options: DuckOptions<Duck1, ... 6 more ..., AnyObject>): Duck<...>
Which when i need to combine reducers, causes a type error
export default combineReducers({ [Duck1.store]: Duck1.reducer, [Duck2.store]: Duck2.reducer, });
Error says:
Argument of type '{ [x: string]: DuckReducer<Duck1, AnyObject, AnyObject, AnyObject, AnyObject, AnyObject, [], AnyObject> | DuckReducer<...>; }' is not assignable to parameter of type 'ReducersMapObject<{ [x: string]: ...; }, any>'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using the types from DefinitelyTyped, it creates the duck with the types
Which when i need to combine reducers, causes a type error
Error says:
The text was updated successfully, but these errors were encountered: