0

连接 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 我需要安装什么新东西吗?

4

1 回答 1

0

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

于 2018-08-31T07:16:46.920 回答