import { Composer, Context } from "grammy"; const composer = new Composer(); const feature = composer.chatType('private'); feature.command(['help', 'start'], async (ctx) => { ctx.reply('Add this bot to chat and type /remove command'); }); export { composer as welcomeFeature };