2021-01-22 16:50:55 +01: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";
|
|
|
|
|
2020-09-29 15:02:36 +02:00
|
|
|
export interface ChannelTreePopoutEvents {
|
|
|
|
query_title: {},
|
|
|
|
notify_title: { title: string }
|
2021-01-22 16:50:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export type ChannelTreePopoutConstructorArguments = {
|
|
|
|
events: IpcRegistryDescription<ChannelTreePopoutEvents>,
|
|
|
|
eventsTree: IpcRegistryDescription<ChannelTreeUIEvents>,
|
|
|
|
eventsControlBar: IpcRegistryDescription<ControlBarEvents>,
|
|
|
|
handlerId: string
|
|
|
|
};
|