export interface IPlatformWebRTC {
createPeerConnection(config: RTCConfiguration): any;
createSessionDescription(init: RTCSessionDescriptionInit): any;
createIceCandidate(init: RTCIceCandidateInit): any;
getUserMedia(): Promise<MediaStream>;
switchCamera(mediaStream: any): Promise<boolean>;
}