react-native-webrtc2
Version:
WebRTC for React Native
22 lines (18 loc) • 399 B
JavaScript
;
export default class RTCIceCandidate {
candidate: string;
sdpMLineIndex: number;
sdpMid: string;
constructor(info) {
this.candidate = info.candidate;
this.sdpMLineIndex = info.sdpMLineIndex;
this.sdpMid = info.sdpMid;
}
toJSON() {
return {
candidate: this.candidate,
sdpMLineIndex: this.sdpMLineIndex,
sdpMid: this.sdpMid,
};
}
}