1/**
2 * Data that's specific to the device and does not vary based account.
3 * Values here should be optional (since they may not have been saved
4 * yet), hence the `Partial`.
5 *
6 * See `#/storage/schema.ts` for examples.
7 */ 8exporttypeDevice=Partial<{ 9// add values here
10}>