UNPKG
react-native-webrtc2
Version:
latest (1.84.5)
1.84.5
1.84.4
1.84.3
1.84.2
1.84.1
1.84.0
WebRTC for React Native
github.com/juncocoa/react-native-webrtc2
juncocoa/react-native-webrtc2
react-native-webrtc2
/
RTCEvent.js
10 lines
(8 loc)
•
179 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
'use strict'
;
export
default
class
RTCEvent
{
type
:
string
;
constructor
(
type
, eventInitDict
) {
this
.
type
=
type
.
toString
();
Object
.
assign
(
this
, eventInitDict); } }