import { IContext } from 'degreet-telegram/src/types' bot.on('edit', async (ctx: IContext): Promise<void> => { try { await ctx.answer.send(ctx.msg) } catch (e: any) { console.error(e) } })
bot.on('edit', async (ctx) => { try { await ctx.answer.send(ctx.msg) } catch (e) { console.error(e) } })
Last updated 2 years ago