import { RTCPeerConnectionWrapper } from './index'; export default async function initializeBrowserWebRTC(): Promise { return { createPeerConnection: (config?: RTCConfiguration): RTCPeerConnection => { return new RTCPeerConnection(config); }, }; }