typescript-telegram-bot-api
Version:
Telegram Bot API wrapper for Node.js written in TypeScript
12 lines (11 loc) • 522 B
TypeScript
import { BackgroundTypeFill, BackgroundTypeWallpaper, BackgroundTypePattern, BackgroundTypeChatTheme } from './';
/**
* ## BackgroundType
* This object describes the type of a background. Currently, it can be one of
* - `BackgroundTypeFill`
* - `BackgroundTypeWallpaper`
* - `BackgroundTypePattern`
* - `BackgroundTypeChatTheme`
* @see https://core.telegram.org/bots/api#backgroundtype
*/
export type BackgroundType = BackgroundTypeFill | BackgroundTypeWallpaper | BackgroundTypePattern | BackgroundTypeChatTheme;