找不到名称'RTCSignalingState'



我在连接RTCPeerConnection时遇到编译时错误。

/node_modules/@types/webrtc/RTCPeerConnection.d.ts (316,30): Cannot find name 'RTCSignalingState'.
const servers = null;
this.pc1 = new RTCPeerConnection(servers);

我已经安装了 npm install --save-dev @types/webrtc 有什么新东西需要安装吗?

所以最后我解决了这个问题。 问题是版本。 npm webrtc 包版本应该与你的 Typescript 版本匹配。 我使用了打字稿版本2.0.3,WebRTC的等效版本是0.0.21。

相关内容

  • 没有找到相关文章

最新更新