UNPKG

typescript-telegram-bot-api

Version:

Telegram Bot API wrapper for Node.js written in TypeScript

13 lines (12 loc) 275 B
import { BackgroundType } from './'; /** * ## ChatBackground * This object represents a chat background. * @see https://core.telegram.org/bots/api#chatbackground */ export type ChatBackground = { /** * Type of the background */ type: BackgroundType; };