mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1/**
2 * Device data that's specific to the device and does not vary based account
3 */
4export type Device = {
5 fontScale: '-2' | '-1' | '0' | '1' | '2'
6 fontFamily: 'system' | 'theme'
7 lastNuxDialog: string | undefined
8 geolocation?: {
9 countryCode: string | undefined
10 }
11 trendingBetaEnabled: boolean
12 devMode: boolean
13 demoMode: boolean
14}
15
16export type Account = {
17 searchTermHistory?: string[]
18 searchAccountHistory?: string[]
19}