UNPKG

@tencentcloud/call-uikit-react

Version:

An Open-source Voice & Video Calling UI Component Based on Tencent Cloud Service.

16 lines (15 loc) 525 B
import { CSSProperties } from 'react'; import { VideoDisplayMode, VideoResolution } from '../../TUICallService'; interface ITUICallKitProps { style?: CSSProperties; className?: string; allowedMinimized?: boolean; allowedFullScreen?: boolean; videoDisplayMode?: VideoDisplayMode; videoResolution?: VideoResolution; beforeCalling?: any; afterCalling?: any; onMinimized?: any; } export default function TUICallKit(props: ITUICallKitProps): import("react/jsx-runtime").JSX.Element; export {};