thelounge/src/types/plugins/irc-events/index.d.ts

10 lines
183 B
TypeScript

import Client from "../../client";
declare global {
type IrcEventHandler = (
this: Client,
irc: NetworkWithIrcFramework["irc"],
network: NetworkWithIrcFramework
) => void;
}