typescript-telegram-bot-api
Version:
Telegram Bot API wrapper for Node.js written in TypeScript
17 lines (16 loc) • 367 B
TypeScript
import { Chat, ChatBoost } from './';
/**
* ## ChatBoostUpdated
* This object represents a boost added to a chat or changed.
* @see https://core.telegram.org/bots/api#chatboostupdated
*/
export type ChatBoostUpdated = {
/**
* Chat which was boosted
*/
chat: Chat;
/**
* Information about the chat boost
*/
boost: ChatBoost;
};