This commit is contained in:
2023-11-12 21:26:31 +03:00
commit 512a10ca29
11 changed files with 1839 additions and 0 deletions

View File

@ -0,0 +1,14 @@
import { Composer, Context } from "grammy";
const composer = new Composer<Context>();
const feature = composer.chatType(['group', 'supergroup']);
feature.command('remove', async (ctx) => {
await ctx.reply('keboard removed', {
reply_markup: { remove_keyboard: true }
});
ctx.editMessageReplyMarkup();
});
export { composer as removeKeyboardFeature };