TeaSpeak-Client/imports/shared-app/ui/tree/popout/Definitions.d.ts

16 lines
598 B
TypeScript
Raw Normal View History

2021-02-07 14:01:37 -05:00
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;
};