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
/
RTCSessionDescription.js
15 lines
(12 loc)
•
234 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
'use strict'
;
export
default
class
RTCSessionDescription
{
sdp
:
string
;
type
:
string
;
constructor
(
info
) {
this
.
sdp
= info.
sdp
;
this
.
type
= info.
type
; }
toJSON
(
) {
return
{
sdp
:
this
.
sdp
,
type
:
this
.
type
}; } }