mirror of
https://github.com/shuaiplus/nodewarden.git
synced 2026-08-05 14:50:11 +00:00
10 lines
218 B
TypeScript
10 lines
218 B
TypeScript
let websiteIconsEnabled = true;
|
|
|
|
export function setWebsiteIconsEnabled(enabled: boolean): void {
|
|
websiteIconsEnabled = enabled;
|
|
}
|
|
|
|
export function areWebsiteIconsEnabled(): boolean {
|
|
return websiteIconsEnabled;
|
|
}
|