notbank
Version:
The Notbank for Node.js
9 lines (8 loc) • 334 B
TypeScript
import { WebsocketConnection } from "./websocketConnection.js";
export declare class Reauther {
private authenticateFn?;
constructor();
updateAuthentication(authenticateFn: (connection: WebsocketConnection) => void): void;
removeAuthentication(): void;
makeAuthentication(connection: WebsocketConnection): void;
}