UNPKG

typescript-telegram-bot-api

Version:

Telegram Bot API wrapper for Node.js written in TypeScript

12 lines (11 loc) 305 B
/** * ## TransactionPartnerOther * Describes a transaction with an unknown source or recipient. * @see https://core.telegram.org/bots/api#transactionpartneruser */ export type TransactionPartnerOther = { /** * Type of the transaction partner, always “other” */ type: 'other'; };