thelounge/src/types/plugins/inputs/index.d.ts

12 lines
200 B
TypeScript

import Client from "../../../client";
declare global {
type PluginInputHandler = (
this: Client,
network: NetworkWithIrcFramework,
chan: Channel,
cmd: string,
args: string[]
) => void;
}