UNPKG

wa-chat-server

Version:

Watson Assistant powered chat server

11 lines (10 loc) 303 B
export interface IRouteContext { target: string | boolean | null; intent?: string | null; utterance?: string | null; params?: Record<string, any> | null; shared?: Record<string, any> | null; } export interface IRouteContextTarget extends IRouteContext { target: string | null; }