my fork of the bluesky client
at main 11 lines 280 B view raw
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}