blob: 667b43208263d51498f98593725a617e12432fd2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/**
* Device data that's specific to the device and does not vary based account
*/
export type Device = {
fontScale: '-2' | '-1' | '0' | '1' | '2'
fontFamily: 'system' | 'theme'
lastNuxDialog: string | undefined
geolocation?: {
countryCode: string | undefined
}
trendingBetaEnabled: boolean
}
export type Account = {
searchTermHistory?: string[]
searchAccountHistory?: string[]
}
|