about summary refs log tree commit diff
path: root/src/storage/schema.ts
blob: 1a9656fede4845821ca41bd7711e66bff8b3596a (plain) (blame)
1
2
3
4
5
6
7
8
/**
 * 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
}