feat(web): show Hub SQLite storage usage in Settings (#1225)

This commit is contained in:
SSU-WEI HUANG
2026-07-29 20:13:04 +08:00
committed by GitHub
parent f5673e89bd
commit 46ab828daa
13 changed files with 229 additions and 2 deletions
+8
View File
@@ -683,3 +683,11 @@ export type SlashCommandsResponse = {
commands?: SlashCommand[]
error?: string
}
export type SqliteStorageUsageResponse = {
path: string
databaseBytes: number
walBytes: number
shmBytes: number
totalBytes: number
}