mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-19 15:06:20 +00:00
5 lines
181 B
TypeScript
5 lines
181 B
TypeScript
let _youtubeEnabled = false;
|
|
|
|
export const getYoutubeRoomEnabled = () => _youtubeEnabled;
|
|
export const setYoutubeRoomEnabled = (enabled: boolean) => { _youtubeEnabled = enabled; };
|