TeaSpeak-Client/imports/shared-app/ui/tree/popout/Definitions.d.ts
2021-02-07 20:01:37 +01:00

16 lines
598 B
TypeScript

import { IpcRegistryDescription } from "tc-shared/events";
import { ChannelTreeUIEvents } from "tc-shared/ui/tree/Definitions";
import { ControlBarEvents } from "tc-shared/ui/frames/control-bar/Definitions";
export interface ChannelTreePopoutEvents {
query_title: {};
notify_title: {
title: string;
};
}
export declare type ChannelTreePopoutConstructorArguments = {
events: IpcRegistryDescription<ChannelTreePopoutEvents>;
eventsTree: IpcRegistryDescription<ChannelTreeUIEvents>;
eventsControlBar: IpcRegistryDescription<ControlBarEvents>;
handlerId: string;
};