TeaWeb/shared/js/ui/AppDefinitions.ts

11 lines
290 B
TypeScript
Raw Normal View History

2021-01-05 18:13:57 +01:00
import {Registry} from "tc-shared/events";
import {ChannelTreeUIEvents} from "tc-shared/ui/tree/Definitions";
export interface AppUiEvents {
query_channel_tree: {},
notify_channel_tree: {
events: Registry<ChannelTreeUIEvents> | undefined,
handlerId: string
}
}