typescript-telegram-bot-api
Version:
Telegram Bot API wrapper for Node.js written in TypeScript
13 lines (12 loc) • 360 B
TypeScript
/**
* ## BotCommandScopeDefault
* Represents the default scope of bot commands. Default commands are used if no commands with a narrower scope are
* specified for the user.
* @see https://core.telegram.org/bots/api#botcommandscopedefault
*/
export type BotCommandScopeDefault = {
/**
* Scope type, must be default
*/
type: 'default';
};