easemob-chat-uikit
Version:
   ![GitHub last c
20 lines (19 loc) • 788 B
TypeScript
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;