UNPKG

rn-verto-typescript

Version:

Verto Free Switch with React Native Type Script

18 lines (17 loc) 536 B
/// <reference types="react" /> import { ToolboxImage } from '../enums/ToolboxImage.enum'; interface Props { audioFileIndex?: ToolboxImage; videoFileIndex?: ToolboxImage; containerStyle: Object; objectFit?: any; streamURL: string; viewStyle: Object; isToolboxAvailable: boolean; isToolboxVisible: boolean; hangupHandler?: () => void; audioSwitchHandler?: () => void; videoSwitchHandler?: () => void; } declare const ViewContainer: (props: Props) => JSX.Element; export default ViewContainer;