typescript-telegram-bot-api
Version:
Telegram Bot API wrapper for Node.js written in TypeScript
16 lines (15 loc) • 404 B
TypeScript
/**
* ## BackgroundTypeChatTheme
* The background is taken directly from a built-in chat theme.
* @see https://core.telegram.org/bots/api#backgroundtypechattheme
*/
export type BackgroundTypeChatTheme = {
/**
* Type of the background, always “chat_theme”
*/
type: 'chat_theme';
/**
* Name of the chat theme, which is usually an emoji
*/
theme_name: string;
};