UNPKG

typescript-telegram-bot-api

Version:

Telegram Bot API wrapper for Node.js written in TypeScript

12 lines (11 loc) 333 B
/** * ## BotCommandScopeAllGroupChats * Represents the scope of bot commands, covering all group and supergroup chats. * @see https://core.telegram.org/bots/api#botcommandscopeallgroupchats */ export type BotCommandScopeAllGroupChats = { /** * Scope type, must be all_group_chats */ type: 'all_group_chats'; };