easemob-chat-uikit
Version:
   ![GitHub last c
15 lines (14 loc) • 475 B
TypeScript
import React from 'react';
import { ChatSDK } from '../SDK';
export interface ChatroomMessageProps {
prefix?: string;
className?: string;
style?: React.CSSProperties;
message: ChatSDK.MessageBody;
targetLanguage?: string;
onReport?: (message: ChatSDK.MessageBody) => void;
}
declare const ChatroomMessageOut: ((props: ChatroomMessageProps) => import("react/jsx-runtime").JSX.Element) & {
displayName: string;
};
export default ChatroomMessageOut;