UNPKG

custom-chatbot-app

Version:

This is my custom chatbot package for BuyersEdge

15 lines (14 loc) 376 B
import React from 'react'; export interface ChatListT { text: string; isUser: boolean; timeStamp: string; } interface ChatConversationSectionProps { chatApiUrl: string; platformId: string; sessionId: string; authToken: string; } declare const ChatConversationSection: React.FC<ChatConversationSectionProps>; export default ChatConversationSection;