Issue
It is showing an error that :
Could not find a declaration file for the module
'@antmedia/webrtc_adaptor/js/webrtc_adaptor.js'.
'D:/web/node_modules/@antmedia/webrtc_adaptor/js/webrtc_adaptor.js'
implicitly has an 'any' type.
Try `npm i --save-dev @types/antmedia__webrtc_adaptor`
if it exists or add a new declaration (.d.ts) file containing
`declare module '@antmedia/webrtc_adaptor/js/webrtc_adaptor.js';`
Reference Image here: https://i.stack.imgur.com/JKQdR.png
Solution
Hope you are doing well. Your error is self explanatory.
In order to resolve your issue what you have to do is to create a folder named "antmedia__webrtc_adaptor" at the below path and create a file named "index.d.ts"
Inside the index.d.ts file you have to put the below code and save it.
inside index.d.ts paste the code declare module '@antmedia/webrtc_adaptor'
node_modules/@types/antmedia__webrtc_adaptor/index.d.ts
I am not mentioning the reason why i did so to resolve the issue, I have left this on you to do some research work.
Have a nice weekend.
Cheers
Answered By - Rahul Kumar
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.