UNPKG

softchatjs-react-native

Version:

React native UI SDK for softchatjs-core. Create a free account at: https://www.softchatjs.com

17 lines (14 loc) 424 B
import React from 'react'; import { Message, Media } from 'softchatjs-core'; type VideoViewProps = { conversationId?: string; clearActiveQuote?: () => void; activeQuote: Message | null; chatUserId: string; recipientId: string; media: Media; view?: boolean; onDelete?: () => void; }; declare function VideoScreen(props: VideoViewProps): React.JSX.Element; export { VideoScreen as default };