TeaWeb/shared/js/ui/AppDefinitions.ts

15 lines
404 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: {},
query_video_container: {},
2021-01-05 18:13:57 +01:00
notify_channel_tree: {
events: Registry<ChannelTreeUIEvents> | undefined,
handlerId: string
},
notify_video_container: {
container: HTMLDivElement | undefined
2021-01-05 18:13:57 +01:00
}
}