UNPKG

typescript-telegram-bot-api

Version:

Telegram Bot API wrapper for Node.js written in TypeScript

12 lines (11 loc) 376 B
/** * ## GiveawayCreated * This object represents a service message about the creation of a scheduled giveaway. * @see https://core.telegram.org/bots/api#giveawaycreated */ export type GiveawayCreated = { /** * Optional. The number of Telegram Stars to be split between giveaway winners; for Telegram Star giveaways only */ prize_star_count?: number; };