(e: RTCDataChannelEvent)
| 65 | } |
| 66 | |
| 67 | private handleDataChannel(e: RTCDataChannelEvent): void { |
| 68 | this.dc = e.channel |
| 69 | this.setupDataChannel() |
| 70 | } |
| 71 | |
| 72 | private initializeDataChannel(): void { |
| 73 | this.dc = this.pc.createDataChannel('dc') |
nothing calls this directly
no test coverage detected