2021-02-20 18:55:36 +01:00
|
|
|
import { ConnectionHandler } from "tc-shared/ConnectionHandler";
|
|
|
|
import { HostBannerUiEvents } from "tc-shared/ui/frames/HostBannerDefinitions";
|
2021-05-01 23:38:36 +02:00
|
|
|
import { Registry } from "tc-shared/events";
|
2021-02-20 18:55:36 +01:00
|
|
|
export declare class HostBannerController {
|
|
|
|
readonly uiEvents: Registry<HostBannerUiEvents>;
|
|
|
|
private currentConnection;
|
|
|
|
private listenerConnection;
|
|
|
|
constructor();
|
|
|
|
destroy(): void;
|
|
|
|
setConnectionHandler(handler: ConnectionHandler): void;
|
|
|
|
protected initializeConnectionHandler(handler: ConnectionHandler): void;
|
|
|
|
private notifyHostBanner;
|
|
|
|
}
|