thelounge/src/plugins/inputs/list.ts
2022-05-21 11:50:55 -07:00

16 lines
269 B
TypeScript

"use strict";
import {PluginInputHandler} from "./index";
const commands = ["list"];
const input: PluginInputHandler = function (network, chan, cmd, args) {
network.chanCache = [];
network.irc.list(...args);
return true;
};
export default {
commands,
input,
};