UNPKG

wa-chat-server

Version:

Watson Assistant powered chat server

9 lines (8 loc) 419 B
import { IPreprocessingService } from './IPreprocessingService'; import { IConversationServices } from './IConversationServices'; import { IPostprocessingService } from './IPostprocessingService'; export interface IServicesRegistrator { getPreProcessingServices(): Array<IPreprocessingService>; getConversationServices(): IConversationServices; getPostProcessingServices(): Array<IPostprocessingService>; }