TypeError: context.send is not a function
AndriiTereshchuk opened this issue · 1 comments
AndriiTereshchuk commented
async callbackQuery(
@Ctx()
context: CallbackQueryContext & MessageContext
): Promise<unknown> {
await context.send('1');
return await context.answerCallbackQuery();
}
nikitakoschelenko commented
Обращайтесь к документации puregram и смотрите примеры. У CallbackQueryContext нет метода context.send, а есть context.message.send.
Лучше не создавать кучу ишью на каждую ошибку, для вопросов по puregram есть дискуссии и чат в Telegram.