puppychat
Version:
A beautiful React chat interface component with TypeScript support
8 lines • 322 B
TypeScript
import type { Message } from '../../types';
export interface BotMessageProps {
message: Message;
showAvatar?: boolean;
isTyping?: boolean;
}
export default function BotMessage({ message, showAvatar, isTyping }: BotMessageProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=BotMessage.d.ts.map