UNPKG

recime-bot-runtime

Version:

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

13 lines (12 loc) 500 B
import { Bot } from './bot-model'; import { Channel } from './channel'; export declare class Facebook extends Channel { constructor(bot: Bot); sendSenderAction(sender: any, name: any): Promise<{}>; execute(body: any, parameters: any, handler: any): Promise<{}>; handleRequest(ev: any, parameters: any, cb: any): Promise<{}>; send(body: any): Promise<{}>; postMessage(body: any): Promise<{}>; process(options: any): Promise<{}>; verifyToken(query: any): Promise<{}>; }