diff options
author | Eric Bailey <git@esb.lol> | 2025-02-03 14:22:49 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-03 14:22:49 -0600 |
commit | 25991af7224cd76a8722f0579c00b73a211a84cc (patch) | |
tree | fbb0fc3d622c92becdd1e0bab37cacc7887e014d /src/storage/schema.ts | |
parent | d0ff6dcba0af82795d101021e76df701e51728e9 (diff) | |
download | voidsky-25991af7224cd76a8722f0579c00b73a211a84cc.tar.zst |
Add example account store (#7641)
* Add example account store * Format
Diffstat (limited to 'src/storage/schema.ts')
-rw-r--r-- | src/storage/schema.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/storage/schema.ts b/src/storage/schema.ts index cfca9131c..d8b9874e4 100644 --- a/src/storage/schema.ts +++ b/src/storage/schema.ts @@ -10,3 +10,7 @@ export type Device = { } trendingBetaEnabled: boolean } + +export type Account = { + searchTermHistory?: string[] +} |