UNPKG

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