teleproto - v1.229.0
    Preparing search index...

    Interface BotCommandEntry

    One bot command for TelegramClient.setBotCommands.

    interface BotCommandEntry {
        command: string;
        description: string;
        ephemeral?: boolean;
    }
    Index
    command: string

    The command itself, without the leading / (1-32 chars: a-z, 0-9, _).

    description: string

    Description shown in the command menu (1-256 chars).

    ephemeral?: boolean

    L228: hide the command from the menu while still accepting it.