Interface IRCConnectionOptions

Options forwarded to the irc-upd client when the webhook bridge connects to Libera Chat and handles nickname recovery (see tools/irc-bot.ts).

interface IRCConnectionOptions {
    channels: string[];
    debug: boolean;
    password: string;
    port: number;
    sasl: boolean;
    secure: boolean;
    userName: string;
}

Properties

channels: string[]
debug: boolean
password: string
port: number
sasl: boolean
secure: boolean
userName: string