UNPKG

tgram.js

Version:

Lightweight modern library for telegram bot. use Node.js

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