🆕 YoutubeTV Broadcasting in rooms !

This commit is contained in:
duckietm
2026-04-10 09:26:50 +02:00
parent c7348a9509
commit 4afdfd8f33
7 changed files with 98 additions and 11 deletions
+1
View File
@@ -26,3 +26,4 @@ export * from './room/widgets';
export * from './user';
export * from './utils';
export * from './wired';
export * from './youtube';
+4
View File
@@ -0,0 +1,4 @@
let _youtubeEnabled = false;
export const getYoutubeRoomEnabled = () => _youtubeEnabled;
export const setYoutubeRoomEnabled = (enabled: boolean) => { _youtubeEnabled = enabled; };
+1
View File
@@ -0,0 +1 @@
export * from './YouTubeRoomState';