OpenMediaCenter/src/GlobalInfos.js

17 lines
280 B
JavaScript
Raw Normal View History

class GlobalInfos {
2020-07-27 21:14:56 +02:00
#darktheme = false;
isDarkTheme() {
2020-07-27 21:14:56 +02:00
return this.#darktheme;
};
2020-07-27 21:14:56 +02:00
enableDarkTheme(enable = true){
this.#darktheme = enable;
}
}
const StaticInfos = new GlobalInfos();
Object.freeze(StaticInfos);
export default StaticInfos;