UNPKG

mongodb-chatbot-ui

Version:

UI React components for the MongoDB Chatbot Framework

16 lines (15 loc) 590 B
/// <reference types="react" /> import { References } from "./references"; import { ChatMessageFeedProps } from "./ChatMessageFeed"; import { DarkModeProps } from "./DarkMode"; export type ChatbotViewProps = DarkModeProps & Omit<ChatMessageFeedProps, "initialMessage"> & { fatalErrorMessage?: string; initialMessageReferences?: References; initialMessageSuggestedPrompts?: string[]; initialMessageText?: string; inputBarId?: string; inputBarPlaceholder?: string; inputBottomText?: string; messageBottomContent?: React.ReactNode; windowTitle?: string; };