UNPKG

@voxket-ai/voxket-live

Version:

A React widget for embedding Voxket-powered audio/video/chat experiences.

14 lines (13 loc) 476 B
import { ThemeType } from '../styles'; import { VoxketClient } from '../core/client'; import { DisplayType } from './widget'; interface VideoViewProps { client: VoxketClient; theme?: ThemeType; onBack?: () => void; disabled?: boolean; displayType?: DisplayType; onEndCall?: () => void; } export default function VideoView({ client, theme, onBack, disabled, displayType, onEndCall }: VideoViewProps): import("react/jsx-runtime").JSX.Element; export {};