Files
Homarr/tools/settings.ts

17 lines
302 B
TypeScript
Raw Normal View History

2022-04-30 21:34:28 +02:00
export function loadSettings(path: string): Settings | null {
2022-04-27 03:12:33 +02:00
const item = localStorage.getItem(path);
if (!item) {
return null;
}
try {
2022-04-30 21:34:28 +02:00
return JSON.parse(item) as Settings;
2022-04-27 03:12:33 +02:00
} catch (e) {
return null;
}
}
2022-04-30 21:34:28 +02:00
export interface Settings {
2022-04-27 20:10:51 +02:00
searchUrl: string;
2022-04-27 03:12:33 +02:00
searchBar: boolean,
}