UNPKG
@nickbusey/thelounge
Version:
latest (4.3.2-7)
4.3.2
4.3.2-7
4.3.2-6
4.3.2-5
4.3.2-3
4.3.2-2
4.3.2-1
4.3.1
The self-hosted Web IRC client
thelounge.chat
nickbusey/thelounge
@nickbusey/thelounge
/
server
/
plugins
/
inputs
/
list.ts
15 lines
(11 loc)
•
255 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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, };