typescript-telegram-bot-api
Version:
Telegram Bot API wrapper for Node.js written in TypeScript
18 lines (17 loc) โข 1.03 kB
TypeScript
declare const emojis: readonly ["๐", "๐", "โค", "๐ฅ", "๐ฅฐ", "๐", "๐", "๐ค", "๐คฏ", "๐ฑ", "๐คฌ", "๐ข", "๐", "๐คฉ", "๐คฎ", "๐ฉ", "๐", "๐", "๐", "๐คก", "๐ฅฑ", "๐ฅด", "๐", "๐ณ", "โคโ๐ฅ", "๐", "๐ญ", "๐ฏ", "๐คฃ", "โก", "๐", "๐", "๐", "๐คจ", "๐", "๐", "๐พ", "๐", "๐", "๐", "๐ด", "๐ญ", "๐ค", "๐ป", "๐จโ๐ป", "๐", "๐", "๐", "๐", "๐จ", "๐ค", "โ", "๐ค", "๐ซก", "๐
", "๐", "โ", "๐
", "๐คช", "๐ฟ", "๐", "๐", "๐", "๐ฆ", "๐", "๐", "๐", "๐", "๐พ", "๐คทโโ", "๐คท", "๐คทโโ", "๐ก"];
/**
* ## ReactionTypeEmoji
* The reaction is based on an emoji.
* @see https://core.telegram.org/bots/api#reactiontypeemoji
*/
export type ReactionTypeEmoji = {
/**
* Type of the reaction, always โemojiโ
*/
type: 'emoji';
/**
* Reaction emoji. Currently, it can be one of "๐", "๐" ...
*/
emoji: (typeof emojis)[number] | string;
};
export {};