UNPKG

@xapp/chat-widget

Version:
13 lines (12 loc) 359 B
import 'rollup-plugin-inject-process-env'; import { FC } from "react"; import { ChatAgents } from "../../store/ChatState"; export interface Props { readonly agents: ChatAgents; readonly textTypingStatusEnabled?: boolean; } /** * Show the agent is typing (or the bot - for fun) */ declare const TypingStatus: FC<Props>; export default TypingStatus;