mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-23 13:29:35 +02:00
31 lines
687 B
TypeScript
31 lines
687 B
TypeScript
export interface WeatherForm {
|
|
WEATHER_API_KEY: string;
|
|
lat: number;
|
|
long: number;
|
|
isCelsius: boolean;
|
|
}
|
|
|
|
export interface SearchForm {
|
|
hideSearch: boolean;
|
|
defaultSearchProvider: string;
|
|
searchSameTab: boolean;
|
|
disableAutofocus: boolean;
|
|
}
|
|
|
|
export interface OtherSettingsForm {
|
|
customTitle: string;
|
|
pinAppsByDefault: boolean;
|
|
pinCategoriesByDefault: boolean;
|
|
hideHeader: boolean;
|
|
hideApps: boolean;
|
|
hideCategories: boolean;
|
|
useOrdering: string;
|
|
appsSameTab: boolean;
|
|
bookmarksSameTab: boolean;
|
|
dockerApps: boolean;
|
|
dockerHost: string;
|
|
kubernetesApps: boolean;
|
|
unpinStoppedApps: boolean;
|
|
useAmericanDate: boolean;
|
|
greetingsSchema: string;
|
|
}
|