obby-client for TypeScript
    Preparing search index...

    Type Alias Bot

    What the server knows about a bot in a channel.

    type Bot = {
        commands: BotCommand[];
        from_config: boolean;
        id: string | null;
        nick: string;
    }
    Index
    commands: BotCommand[]

    The commands it offers.

    from_config: boolean

    True when an operator configured this bot, rather than it registering itself.

    Only a configured bot may claim a privileged command name. A bot that registered itself has those names stripped, so it cannot shadow oper or identify.

    id: string | null

    The identifier the server gave it.

    nick: string

    The bot's nick.