1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-19 11:39:36 +02:00
flame/client/src/interfaces/Config.ts

25 lines
582 B
TypeScript
Raw Normal View History

2021-10-22 13:31:02 +02:00
export interface Config {
WEATHER_API_KEY: string;
lat: number;
long: number;
isCelsius: boolean;
customTitle: string;
pinAppsByDefault: boolean;
pinCategoriesByDefault: boolean;
hideHeader: boolean;
useOrdering: string;
appsSameTab: boolean;
bookmarksSameTab: boolean;
searchSameTab: boolean;
hideApps: boolean;
hideCategories: boolean;
hideSearch: boolean;
defaultSearchProvider: string;
dockerApps: boolean;
dockerHost: string;
kubernetesApps: boolean;
unpinStoppedApps: boolean;
useAmericanDate: boolean;
disableAutofocus: boolean;
2021-10-22 13:31:02 +02:00
}