rn-verto-typescript
Version:
Verto Free Switch with React Native Type Script
23 lines (22 loc) • 731 B
TypeScript
/// <reference types="react" />
import { defaultVertoCallbacks } from '../store';
import VertoParams from '../models/VertoParams';
import ViewType from '../enums/ViewType.enum';
import MakeCallParams from '../models/Call/MakeCallParams';
interface Props {
vertoParams: VertoParams;
callbacks: defaultVertoCallbacks;
onLogoutClicked: Function;
viewType: ViewType;
indicatorColor?: string;
callState?: string;
callParams?: MakeCallParams;
onAudioStateChanged?: Function;
onVideoStateChanged?: Function;
isAudioOff: boolean;
isCameraOff: boolean;
cameraFacing?: string;
isToolboxVisible?: boolean;
}
declare const VertoView: (props: Props) => JSX.Element;
export default VertoView;