UNPKG

@twilio/voice-react-native-sdk

Version:
23 lines (22 loc) 478 B
import { Constants } from '../constants'; /** * Ice transport policy. */ export declare enum IceTransportPolicy { /** * All Ice transport policy. */ All = "all", /** * Relay Ice transport poliicy. */ Relay = "relay" } /** * Ice server configuration. */ export declare type IceServer = Partial<{ [Constants.IceServerKeyPassword]: string; [Constants.IceServerKeyServerUrl]: string; [Constants.IceServerKeyUsername]: string; }>;