chore: create IPreferences interface
This commit is contained in:
parent
9d9553b075
commit
ceb2b331ad
|
@ -0,0 +1,10 @@
|
||||||
|
import { SortBy, DisplayMode } from '../constants/constantDisplayMode';
|
||||||
|
|
||||||
|
export interface IPreferences {
|
||||||
|
sortBy: SortBy;
|
||||||
|
groupByType: boolean;
|
||||||
|
showFavorites: boolean;
|
||||||
|
showUnread: boolean;
|
||||||
|
showAvatar: boolean;
|
||||||
|
displayMode: DisplayMode;
|
||||||
|
}
|
Loading…
Reference in New Issue