mirror of
https://github.com/thelounge/thelounge
synced 2024-11-26 14:00:21 +00:00
dd05ee3a65
Co-authored-by: Eric Nemchik <eric@nemchik.com> Co-authored-by: Pavel Djundik <xPaw@users.noreply.github.com>
16 lines
286 B
TypeScript
16 lines
286 B
TypeScript
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,
|
|
};
|