UNPKG

typescript-telegram-bot-api

Version:

Telegram Bot API wrapper for Node.js written in TypeScript

17 lines (16 loc) 409 B
import { ReactionType } from './ReactionType'; /** * ## ReactionCount * Represents a reaction added to a message along with the number of times it was added. * @see https://core.telegram.org/bots/api#reactioncount */ export type ReactionCount = { /** * Type of the reaction */ type: ReactionType; /** * Number of times the reaction was added */ total_count: number; };