import { IMessageBody } from '../common/model/IMessageBody.interface'; export interface ITelegramService { getUpdates(offset?: number): Promise; sendPhoto(chatId: number | string, photoPath: string): Promise; getWebhookUrl(): Promise; setWebhook(url: string): Promise; }