d56efe250e
* Add dev mode for easy copying at:// URIs and DIDs * Use storage API * Share text instead of URL * Cleanup persisted schema * Change translation msg
19 lines
422 B
TypeScript
19 lines
422 B
TypeScript
/**
|
|
* 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
|
|
devMode: boolean
|
|
}
|
|
|
|
export type Account = {
|
|
searchTermHistory?: string[]
|
|
searchAccountHistory?: string[]
|
|
}
|