UNPKG

@telnyx/react-native-voice-sdk

Version:

Telnyx React Native Voice SDK - A complete WebRTC voice calling solution

11 lines (9 loc) 365 B
import * as pkg from '../package.json'; export const DEV_HOST = 'wss://rtcdev.telnyx.com'; export const PROD_HOST = 'wss://rtc.telnyx.com'; export const IS_DEV = process.env.NODE_ENV === 'development'; export const DEFAULT_SDK_VERSION = pkg.version; export let SDK_VERSION = pkg.version; export function setSDKVersion(version: string) { SDK_VERSION = version; }