import { Context, Telegraf } from 'telegraf'; import { Update } from 'typegram'; export const setBotCommands = (bot: Telegraf>) => { bot.command('hello', (ctx) => ctx.reply('world')); };