custom-chatbot-app
Version:
This is my custom chatbot package for BuyersEdge
11 lines (10 loc) • 309 B
TypeScript
import React from 'react';
interface ChatConversationSectionProps {
chatApiUrl: string;
platformId: string;
sessionId: string;
authToken: string;
classPrefix?: string;
}
declare const ChatConversationSection: React.FC<ChatConversationSectionProps>;
export default ChatConversationSection;