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

11 lines
231 B
TypeScript

import Client from "../../client";
import ClientManager from "../../clientManager";
type AuthHandler = (
manager: ClientManager,
client: Client,
user: string,
password: string,
callback: (success: boolean) => void
) => void;