17 lines
286 B
TypeScript
17 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,
|
||
|
};
|