UNPKG

typescript-telegram-bot-api

Version:

Telegram Bot API wrapper for Node.js written in TypeScript

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