typescript-telegram-bot-api
Version:
Telegram Bot API wrapper for Node.js written in TypeScript
16 lines (15 loc) • 365 B
TypeScript
/**
* ## ReactionTypeCustomEmoji
* The reaction is based on a custom emoji.
* #see https://core.telegram.org/bots/api#reactiontypecustomemoji
*/
export type ReactionTypeCustomEmoji = {
/**
* Type of the reaction, always “custom_emoji”
*/
type: 'custom_emoji';
/**
* Custom emoji identifier
*/
custom_emoji_id: string;
};