UNPKG

recime-bot-runtime

Version:

This runtime is intended to run inside a micro-service container with platform specific integration and module interpreter.

12 lines (11 loc) 294 B
import { Bot } from './bot-model'; import { Log } from './logger'; export interface Context { bot: Bot; log: Log; } export declare abstract class Channel { protected context: Context; constructor(context: Context); execute(body: any, parameters: any, handler: any): void; }