UNPKG

@nickbusey/thelounge

Version:

The self-hosted Web IRC client

17 lines (12 loc) 286 B
import {PluginInputHandler} from "./index"; const commands = ["raw", "send", "quote"]; const input: PluginInputHandler = function ({irc}, chan, cmd, args) { if (args.length !== 0) { irc.connection.write(args.join(" ")); } return true; }; export default { commands, input, };