Files
bsky-social-app/src/storage/schema.ts
T
Eric Bailey 25991af722 Add example account store (#7641)
* Add example account store

* Format
2025-02-03 14:22:49 -06:00

17 lines
369 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
}
export type Account = {
searchTermHistory?: string[]
}