UNPKG

@vchatcloud/react-ui-kit

Version:

VChatCloud UI Kit for react integration

8 lines (7 loc) 375 B
import { ReactEventHandler } from 'react'; import { ChatBaseProps } from './ChatBase'; interface TextChatItemProps { readonly onLoad: ReactEventHandler<HTMLElement> & ((height: number) => void); } declare const TextChatItem: ({ message, onLoad, onSendWhisper, }: ChatBaseProps & TextChatItemProps) => import("react/jsx-runtime").JSX.Element; export default TextChatItem;