UNPKG

recime-bot-runtime

Version:

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

10 lines (9 loc) 371 B
import { Channel } from "./channel"; import { Bot } from "./bot-model"; export declare class BotFramework extends Channel { constructor(bot: Bot); execute(body: any, parameters: any, handler: any): Promise<{}>; sendTyping(accessToken: any, payload: any): Promise<{}>; sendMessage(accessToken: any, payload: any): Promise<{}>; token(): Promise<any>; }