TeaSpeak-Client/imports/shared-app/ui/frames/side/ChannelFileBrowserController.d.ts
2021-02-07 20:01:37 +01:00

16 lines
658 B
TypeScript

import { ConnectionHandler } from "tc-shared/ConnectionHandler";
import { Registry } from "tc-shared/events";
import { ChannelFileBrowserUiEvents } from "tc-shared/ui/frames/side/ChannelFileBrowserDefinitions";
import { ChannelEntry } from "tc-shared/tree/Channel";
export declare class ChannelFileBrowserController {
readonly uiEvents: Registry<ChannelFileBrowserUiEvents>;
private currentConnection;
private remoteBrowseEvents;
private currentChannel;
constructor();
destroy(): void;
setConnectionHandler(connection: ConnectionHandler): void;
setChannel(channel: ChannelEntry | undefined): void;
private notifyEvents;
}