edgeport - v1.0.6
    Preparing search index...

    Interface IrcMessage

    A parsed IRC message.

    1.0.4

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

    The command, uppercased for alphabetic verbs (a numeric stays its 3-digit string).

    params: string[]

    The positional parameters, the last of which may be a space-bearing trailing param.

    prefix?: IrcPrefix

    The parsed source prefix; absent when the line carried no :prefix.

    tags?: Record<string, string>

    IRCv3 message tags (unescaped); absent when the line carried no @tags.