typescript-telegram-bot-api
Version:
Telegram Bot API wrapper for Node.js written in TypeScript
12 lines (11 loc) • 342 B
TypeScript
/**
* ## TransactionPartnerTelegramAds
* Describes a withdrawal transaction to the Telegram Ads platform.
* @see https://core.telegram.org/bots/api#transactionpartnertelegramads
*/
export type TransactionPartnerTelegramAds = {
/**
* Type of the transaction partner, always “telegram_ads”
*/
type: 'telegram_ads';
};