Binding element 'category' implicitly has an 'any' type.ts(7031)
Code
Error:
Binding element 'category' implicitly has an 'any' type.ts(7031)
Solution: Add <any> to the passed object argument
Solution 2:
Open tsconfig.json
and change the following property:
"noImplicitAny": false,
to
"noImplicitAny": true,