UNPKG

@twilio/voice-react-native-sdk

Version:
26 lines (25 loc) 1.1 kB
// Copyright © 2022 Twilio, Inc. All rights reserved. Licensed under the Twilio // license. // See LICENSE in the project root for license information. /** * Provides access to Twilio Programmable Voice for React Native applications * running on iOS and Android devices. * * @packageDocumentation */ export { Voice } from './Voice'; export { AudioCodec, AudioCodecType, OpusAudioCodec, PCMUAudioCodec } from './type/AudioCodec'; export { AudioDevice } from './AudioDevice'; export { Call } from './Call'; export { CallInvite } from './CallInvite'; export { CallMessage } from './CallMessage/CallMessage'; export { IceServer, IceTransportPolicy } from './type/Ice'; export { IncomingCallMessage } from './CallMessage/IncomingCallMessage'; export { OutgoingCallMessage } from './CallMessage/OutgoingCallMessage'; export { CustomParameters } from './type/common'; export { CallKit } from './type/CallKit'; export { RTCStats } from './type/RTCStats'; export { PreflightTest } from './PreflightTest'; import * as TwilioErrors from './error'; export { TwilioErrors }; //# sourceMappingURL=index.js.map