refacto: type mutu
This commit is contained in:
13
src/types/preferences.ts
Normal file
13
src/types/preferences.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
export interface UserPreferences {
|
||||
showThumbnails: boolean;
|
||||
cacheMode: "memory" | "file";
|
||||
showOnlyUnread: boolean;
|
||||
debug: boolean;
|
||||
}
|
||||
|
||||
export const defaultPreferences: UserPreferences = {
|
||||
showThumbnails: true,
|
||||
cacheMode: "memory",
|
||||
showOnlyUnread: false,
|
||||
debug: false,
|
||||
} as const;
|
||||
Reference in New Issue
Block a user