UNPKG

typescript-telegram-bot-api

Version:

Telegram Bot API wrapper for Node.js written in TypeScript

12 lines (11 loc) 260 B
/** * ## ChatBoostAdded * This object contains information about a chat boost. * @see https://core.telegram.org/bots/api#chatboostadded */ export type ChatBoostAdded = { /** * Number of boosts added by the user */ boost_count: number; };