UNPKG

typescript-telegram-bot-api

Version:

Telegram Bot API wrapper for Node.js written in TypeScript

12 lines (11 loc) 273 B
/** * ## BotShortDescription * This object represents the bot's short description. * @see https://core.telegram.org/bots/api#botshortdescription */ export type BotShortDescription = { /** * The bot's short description */ short_description: string; };