UNPKG

react-native-webrtc2

Version:
15 lines (12 loc) 234 B
'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}; } }