UNPKG

251 BTypeScriptView Raw
1import { Channel } from "./channel";
2import { Bot } from "./bot-model";
3export declare class Telegram extends Channel {
4 constructor(bot: Bot);
5 execute(body: any, parameters: any, handler: any): Promise<{}>;
6 send(body: any): Promise<{}>;
7}