UNPKG

sandeep-react-chatbotify

Version:

A modern React library for creating flexible and extensible chatbots.

12 lines 265 B
/// <reference types="react" /> /** * Defines the attributes within a chat message. */ export type Message = { id: string; content: string | JSX.Element; sender: string; type: string; timestamp: string; }; //# sourceMappingURL=Message.d.ts.map