UNPKG

typescript-telegram-bot-api

Version:

Telegram Bot API wrapper for Node.js written in TypeScript

11 lines (10 loc) 408 B
import { ReactionTypeEmoji, ReactionTypeCustomEmoji, ReactionTypePaid } from './'; /** * ## ReactionType * This object describes the type of a reaction. Currently, it can be one of * - ReactionTypeEmoji * - ReactionTypeCustomEmoji * - ReactionTypePaid * @see https://core.telegram.org/bots/api#reactiontype */ export type ReactionType = ReactionTypeEmoji | ReactionTypeCustomEmoji | ReactionTypePaid;