UNPKG

custom-chatbot-app

Version:

This is my custom chatbot package for BuyersEdge

13 lines (12 loc) 352 B
import React from 'react'; interface ChatBotScreenProps { setChatContainer: (value: boolean) => void; chatScreenHeight?: string; chatScreenWidth?: string; chatApiUrl: string; platformId: string; sessionId: string; authToken: string; } declare const ChatBotScreen: React.FC<ChatBotScreenProps>; export default ChatBotScreen;