easemob-chat-uikit
Version:
   ![GitHub last c
13 lines (12 loc) • 397 B
TypeScript
import React from 'react';
import { CurrentConversation } from '../store/ConversationStore';
export interface TypingProps {
prefix?: string;
className?: string;
style?: React.CSSProperties;
onHide?: () => void;
onShow?: () => void;
conversation: CurrentConversation;
}
declare let Typing: (props: TypingProps) => import("react/jsx-runtime").JSX.Element;
export { Typing };