edgeport - v1.0.6
    Preparing search index...

    Interface IrcWhois

    The structured result of a IrcSession.whois.

    1.0.4

    interface IrcWhois {
        account?: string;
        channels?: string[];
        host?: string;
        idleSeconds?: number;
        nick: string;
        operator?: boolean;
        realname?: string;
        server?: string;
        serverInfo?: string;
        user?: string;
    }
    Index
    account?: string

    The account the user is logged in as (RPL_WHOISACCOUNT), when identified.

    channels?: string[]

    The channels the user is on, with membership prefixes stripped (RPL_WHOISCHANNELS).

    host?: string

    The host (RPL_WHOISUSER).

    idleSeconds?: number

    Seconds the user has been idle (RPL_WHOISIDLE).

    nick: string

    The queried nick.

    operator?: boolean

    Whether the user is a server operator (RPL_WHOISOPERATOR present).

    realname?: string

    The realname / gecos (RPL_WHOISUSER).

    server?: string

    The server the user is on (RPL_WHOISSERVER).

    serverInfo?: string

    The server's descriptive info line (RPL_WHOISSERVER).

    user?: string

    The ident/user part (RPL_WHOISUSER).