custom-chatbot-app
Version:
This is my custom chatbot package for BuyersEdge
16 lines (15 loc) • 509 B
TypeScript
import React from 'react';
type Props = {
color?: string;
position?: string;
welcomeModalWidth?: string;
welcomeModalHeight?: string;
chatScreenWidth?: string;
chatScreenHeight?: string;
chatApiUrl: string;
platformId: string;
sessionId: string;
authToken: string;
};
declare const ChatBot: ({ welcomeModalHeight, welcomeModalWidth, chatScreenHeight, chatScreenWidth, chatApiUrl, platformId, sessionId, authToken }: Props) => React.JSX.Element;
export default ChatBot;