typescript-telegram-bot-api
Version:
Telegram Bot API wrapper for Node.js written in TypeScript
12 lines (11 loc) • 330 B
TypeScript
/**
* ## 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';
};