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

30 lines (29 loc) 1.04 kB
import React from 'react'; import { BaseMessageProps, renderUserProfileProps } from '../baseMessage'; import { ChatSDK } from '../SDK'; import { BaseMessageType } from '../baseMessage/BaseMessage'; export interface CombinedMessageProps extends BaseMessageProps { prefix?: string; className?: string; combinedMessage: ChatSDK.CombineMsgBody & { bySelf?: boolean; messages?: (BaseMessageType & { bySelf: boolean; })[]; messageList?: (BaseMessageType & { bySelf?: boolean; })[]; }; style?: React.CSSProperties; nickName?: string; type?: 'primary' | 'secondly'; bubbleClass?: string; onShowDetail?: (msg: ChatSDK.CombineMsgBody) => void; renderUserProfile?: (props: renderUserProfileProps) => React.ReactNode; showSummary?: boolean; onlyContent?: boolean; } declare const CombinedMessageOut: ((props: CombinedMessageProps) => import("react/jsx-runtime").JSX.Element) & { displayName: string; }; export default CombinedMessageOut;