mirror of
https://github.com/pawelmalak/flame.git
synced 2026-02-28 09:23:12 +08:00
38 lines
793 B
TypeScript
38 lines
793 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;
|
|
useAmericanDate: boolean;
|
|
greetingsSchema: string;
|
|
daySchema: string;
|
|
monthSchema: string;
|
|
showTime: boolean;
|
|
}
|
|
|
|
export interface DockerSettingsForm {
|
|
dockerApps: boolean;
|
|
dockerHost: string;
|
|
kubernetesApps: boolean;
|
|
unpinStoppedApps: boolean;
|
|
}
|