UNPKG

typescript-telegram-bot-api

Version:

Telegram Bot API wrapper for Node.js written in TypeScript

12 lines (11 loc) 283 B
/** * ## MenuButtonCommands * epresents a menu button, which opens the bot's list of commands. * @see https://core.telegram.org/bots/api#menubuttoncommands */ export type MenuButtonCommands = { /** * Type of the button, must be commands */ type: 'commands'; };