UNPKG

easemob-chat-uikit

Version:

![Static Badge](https://img.shields.io/badge/platform-React-green) ![Static Badge](https://img.shields.io/badge/language-typescript-green) ![GitHub commit activity](https://img.shields.io/github/commit-activity/y/easemob/Easemob-UIKit-web) ![GitHub last c

20 lines (19 loc) 788 B
import React from 'react'; import { BaseMessageProps, renderUserProfileProps } from '../baseMessage'; import type { VideoMessageType } from '../types/messageType'; import { ChatSDK } from '../SDK'; export interface VideoMessageProps extends BaseMessageProps { videoMessage: ChatSDK.VideoMsgBody & VideoMessageType; prefix?: string; style?: React.CSSProperties; nickName?: string; bubbleClass?: string; renderUserProfile?: (props: renderUserProfileProps) => React.ReactNode; type?: 'primary' | 'secondly'; className?: string; videoProps?: React.VideoHTMLAttributes<HTMLVideoElement>; } declare const VideoMessageOut: ((props: VideoMessageProps) => import("react/jsx-runtime").JSX.Element) & { displayName: string; }; export default VideoMessageOut;