UNPKG

typescript-telegram-bot-api

Version:

Telegram Bot API wrapper for Node.js written in TypeScript

13 lines (12 loc) 223 B
import { Gift } from './'; /** * ## Gifts * This object represent a list of gifts. * @see https://core.telegram.org/bots/api#gifts */ export type Gifts = { /** * The list of gifts */ gifts: Gift[]; };