Add stuff

This commit is contained in:
2025-01-16 11:10:43 +01:00
parent 7abe904997
commit 41dfb5809a
4 changed files with 59 additions and 24 deletions
+12 -2
View File
@@ -6,12 +6,22 @@ interface ProgressType {
discardedDbSize: bigint;
filteredDbSize: bigint;
myDbSize: bigint;
}
};
interface ProgressDictionary {
description: string;
value: string;
}
};
interface SearchResult {
title: string;
description: string;
url: string;
};
interface SearchResults {
results: SearchResult[];
};
type CacheEntry<T> = {
data: T;