UNPKG

typescript-telegram-bot-api

Version:

Telegram Bot API wrapper for Node.js written in TypeScript

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