UNPKG

tgram.js

Version:

Lightweight modern library for telegram bot. use Node.js

9 lines (8 loc) 279 B
import telegramFetch from "../utility/telegram-fetch.js"; export async function sendPhoto(token, chatId, photo, caption="") { return await telegramFetch.post(`https://api.telegram.org/bot${token}/sendPhoto`, { chat_id: chatId, photo, caption }) }