UNPKG

react-chatbotify

Version:

A modern React library for creating flexible and extensible chatbots.

10 lines 291 B
import { RcbBaseEvent } from "../internal/events/RcbBaseEvent"; /** * Defines the data available for change path event. */ export type RcbChangePathEvent = RcbBaseEvent<{ prevPath: string; currPath: string; nextPath: string; }>; //# sourceMappingURL=RcbChangePathEvent.d.ts.map