typescript-telegram-bot-api
Version:
Telegram Bot API wrapper for Node.js written in TypeScript
12 lines (11 loc) • 387 B
TypeScript
/**
* ## BotCommandScopeAllChatAdministrators
* Represents the scope of bot commands, covering all group and supergroup chat administrators.
* @see https://core.telegram.org/bots/api#botcommandscopeallchatadministrators
*/
export type BotCommandScopeAllChatAdministrators = {
/**
* Scope type, must be all_chat_administrators
*/
type: 'all_chat_administrators';
};