UNPKG

typescript-telegram-bot-api

Version:

Telegram Bot API wrapper for Node.js written in TypeScript

20 lines (19 loc) 492 B
/** * ## ForumTopicCreated * This object represents a service message about a new forum topic created in the chat. * @see https://core.telegram.org/bots/api#forumtopiccreated */ export type ForumTopicCreated = { /** * Name of the topic */ name: string; /** * Color of the topic icon in RGB format */ icon_color: number; /** * Optional. Unique identifier of the custom emoji shown as the topic icon */ icon_custom_emoji_id: string; };