typescript-telegram-bot-api
Version:
Telegram Bot API wrapper for Node.js written in TypeScript
16 lines (15 loc) • 375 B
TypeScript
/**
* ## BackgroundFillSolid
* The background is filled using the selected color.
* @see https://core.telegram.org/bots/api#backgroundfillsolid
*/
export type BackgroundFillSolid = {
/**
* Type of the background fill, always “solid”
*/
type: 'solid';
/**
* The color of the background fill in the RGB24 format
*/
color: string;
};