无法从 angular ts 文件中的节点模块文件夹中的 antmedia 包导入 js 文件中的 WebRTCAdaptor
Unable to import WebRTCAdaptor which is in js file from antmedia package in node modules folder in angular ts file
显示错误:
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';`
此处参考图片:https://i.stack.imgur.com/JKQdR.png
希望你一切顺利。你的错误是不言自明的。
为了解决您的问题,您需要做的是在以下路径中创建一个名为“antmedia__webrtc_adaptor”的文件夹并创建一个名为“index.d.ts”的文件
在 index.d.ts 文件中,您必须输入以下代码并保存。
里面index.d.ts粘贴代码declare module '@antmedia/webrtc_adaptor'
node_modules/@types/antmedia__webrtc_adaptor/index.d.ts
我没有提到我这样做是为了解决这个问题的原因,我把这个留给你做一些研究工作。
周末愉快
干杯
显示错误:
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';`
此处参考图片:https://i.stack.imgur.com/JKQdR.png
希望你一切顺利。你的错误是不言自明的。
为了解决您的问题,您需要做的是在以下路径中创建一个名为“antmedia__webrtc_adaptor”的文件夹并创建一个名为“index.d.ts”的文件
在 index.d.ts 文件中,您必须输入以下代码并保存。
里面index.d.ts粘贴代码declare module '@antmedia/webrtc_adaptor'
node_modules/@types/antmedia__webrtc_adaptor/index.d.ts
我没有提到我这样做是为了解决这个问题的原因,我把这个留给你做一些研究工作。
周末愉快
干杯