diff options
author | Paul Frazee <pfrazee@gmail.com> | 2024-09-13 08:57:41 -0700 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2024-09-13 08:57:41 -0700 |
commit | c7231537f1d18de01bb3502e508999276e47b6df (patch) | |
tree | 3f8c1e73b4bff483a2ca5bfb34c6413345e2320c /src/storage | |
parent | 1dc7ef137cb7a546b1c84c1e7304a4f74ea1e66b (diff) | |
parent | b47bac965f5267756f9529d911e7a49aba9e3e58 (diff) | |
download | voidsky-c7231537f1d18de01bb3502e508999276e47b6df.tar.zst |
Merge branch 'ten-milly' into main
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..bc41fd3ed 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 | undefined +} |