mullwar / telebot

The easy way to write Telegram bots in Node.js
https://www.npmjs.com/package/telebot
MIT License
1.48k stars 270 forks source link

[bot.error.event] TypeError: bot.send_message is not a function #240

Open nickz1p opened 1 year ago

nickz1p commented 1 year ago

import TeleBot from "telebot"

const bot = new TeleBot(process.env.TELEGRAM_BOT_TOKEN) const destinationChatId = XXXXXXXXXXXXXXXXXXXXXX;

bot.on("*", msg => bot.send_message(destinationChatId, msg))

export default bot