UNPKG

typescript-telegram-bot-api

Version:

Telegram Bot API wrapper for Node.js written in TypeScript

13 lines (12 loc) 315 B
import { StarTransaction } from './StarTransaction'; /** * ## StarTransactions * Contains a list of Telegram Star transactions. * @see https://core.telegram.org/bots/api#startransactions */ export type StarTransactions = { /** * The list of transactions */ transactions: StarTransaction[]; };