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
/
MediaStreamEvent.js
13 lines
(10 loc)
•
257 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
'use strict'
;
import
type
MediaStream
from
'./MediaStream'
;
export
default
class
MediaStreamEvent
{
type
:
string
;
stream
:
MediaStream
;
constructor
(
type
, eventInitDict
) {
this
.
type
=
type
.
toString
();
Object
.
assign
(
this
, eventInitDict); } }