Learning about nodejs, typescript, and auth0 is new to me.
I encountered an error while trying to use express-jwt-authz in a sample app:
src/server.ts:4:22 - error TS7016: Could not find a declaration file for module 'express-jwt-authz'. 'C:/Code/Nodejs_practice/nodeHttp/node_modules/express-jwt-authz/lib/index.js' implicitly has an 'any' type. Try
npm install @types/express-jwt-authz
if it exists or add a new declaration (.d.ts) file containing declare module 'express-jwt-authz';
4 import jwtAuthz from 'express-jwt-authz';
Is there any solution for this issue?