/** * ## BotCommandScopeAllPrivateChats * Represents the scope of bot commands, covering all private chats. * @see https://core.telegram.org/bots/api#botcommandscopeallprivatechats */ export type BotCommandScopeAllPrivateChats = { /** * Scope type, must be all_private_chats */ type: 'all_private_chats'; };