Bluesky app fork with some witchin' additions 馃挮
at main 10 lines 280 B view raw
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 */ 8export type Device = Partial<{ 9 // add values here 10}>