UNPKG

wa-chat-server

Version:

Watson Assistant powered chat server

9 lines (8 loc) 420 B
import { ConversationService } from './ConversationService'; import { IConversationServiceConfig } from '../../interface/IConversationServiceConfig'; export declare class ConversationServiceHelloWorld extends ConversationService { protected config: IConversationServiceConfig; private greetings; constructor(config: IConversationServiceConfig); getResponse(request: Record<string, any>): Promise<any>; }