Reworked the /progress page

This commit is contained in:
2024-12-17 13:15:47 +01:00
parent 3822339dd9
commit 8b55cf7bb6
3 changed files with 32 additions and 34 deletions
+5
View File
@@ -8,6 +8,11 @@ interface ProgressType {
myDbSize: bigint;
}
interface ProgressDictionary {
description: string;
value: string;
}
type CacheEntry<T> = {
data: T;
timestamp: number;