/** * ## 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'; };