diff options
author | Eric Bailey <git@esb.lol> | 2024-09-11 21:20:39 -0500 |
---|---|---|
committer | Eric Bailey <git@esb.lol> | 2024-09-11 21:20:39 -0500 |
commit | 9bb385a4dd54aca2b21533b7dd919ac8d0b4aeef (patch) | |
tree | 2cec2e58fc77e7e085d712624d482c62e80c94df /src/storage | |
parent | 63444052e8db9d2333b887a5ba5fd261e7df52db (diff) | |
download | voidsky-9bb385a4dd54aca2b21533b7dd919ac8d0b4aeef.tar.zst |
Refactor, integrate nux, snoozing
Diffstat (limited to 'src/storage')
-rw-r--r-- | src/storage/schema.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/storage/schema.ts b/src/storage/schema.ts index 6522d75a3..be074db43 100644 --- a/src/storage/schema.ts +++ b/src/storage/schema.ts @@ -1,4 +1,6 @@ /** * Device data that's specific to the device and does not vary based account */ -export type Device = {} +export type Device = { + lastNuxDialog: string +} |