UNPKG

react-chatbotify

Version:

A modern React library for creating flexible and extensible chatbots.

9 lines 264 B
import { EventDetail } from "./EventDetail"; /** * Base rcb event which specifies custom event fields. */ export type RcbBaseEvent<T = any, U = EventDetail, V = any> = CustomEvent<U> & { data: T; promises: V; }; //# sourceMappingURL=RcbBaseEvent.d.ts.map