typescript-telegram-bot-api
Version:
Telegram Bot API wrapper for Node.js written in TypeScript
11 lines (10 loc) • 411 B
TypeScript
import { InputPaidMediaPhoto } from './InputPaidMediaPhoto';
import { InputPaidMediaVideo } from './InputPaidMediaVideo';
/**
* ## InputPaidMedia
* This object describes the paid media to be sent. Currently, it can be one of
* - InputPaidMediaPhoto
* - InputPaidMediaVideo
* @see https://core.telegram.org/bots/api#inputpaidmedia
*/
export type InputPaidMedia = InputPaidMediaPhoto | InputPaidMediaVideo;