UNPKG

react-chatbotify

Version:

A modern React library for creating flexible and extensible chatbots.

17 lines 538 B
import { RcbBaseEvent } from "../internal/events/RcbBaseEvent"; import { Flow } from "../Flow"; import { Plugin } from "../Plugin"; import { Settings } from "../Settings"; import { Styles } from "../Styles"; import { Theme } from "../Theme"; /** * Defines the data available for pre-load chatbot event. */ export type RcbPreLoadChatBotEvent = RcbBaseEvent<{ flow: Flow; settings: Settings; styles: Styles; themes: Theme | Array<Theme>; plugins: Array<Plugin>; }>; //# sourceMappingURL=RcbPreLoadChatBotEvent.d.ts.map