edgeport - v1.0.6
    Preparing search index...

    Interface IrcEvent

    An event delivered to IrcSession.events: anything not routed to IrcSession.messages (JOIN/PART/QUIT/NICK/KICK/MODE/TOPIC and every numeric reply).

    1.0.4

    interface IrcEvent {
        command: string;
        params: string[];
        prefix?: IrcPrefix;
        raw: string;
        tags: Record<string, string>;
    }
    Index
    command: string

    The command or numeric (uppercased for verbs).

    params: string[]

    The positional parameters.

    prefix?: IrcPrefix

    The parsed source prefix, when the line carried one.

    raw: string

    The verbatim line as received (without the CRLF).

    tags: Record<string, string>

    IRCv3 message tags; empty when none were sent.