TeaSpeak-Client/imports/shared-app/ui/frames/log/Controller.d.ts
2021-02-20 18:55:36 +01:00

13 lines
478 B
TypeScript

import { Registry } from "tc-shared/events";
import { ServerEventLogUiEvents } from "tc-shared/ui/frames/log/Definitions";
import { ConnectionHandler } from "tc-shared/ConnectionHandler";
export declare class ServerEventLogController {
readonly events: Registry<ServerEventLogUiEvents>;
private currentConnection;
private listenerConnection;
constructor();
destroy(): void;
setConnectionHandler(handler: ConnectionHandler): void;
private sendLogs;
}