Added frontend project with some basic api fetching implemented.

This commit is contained in:
2024-12-06 12:33:48 +01:00
parent cd49d32dd7
commit bab8fa6c25
20 changed files with 11147 additions and 6 deletions
+9
View File
@@ -0,0 +1,9 @@
interface Progress {
percentageOfIpv4Scanned: number; // assuming this is a number
totalFiltered: bigint;
amountOfIpv4Left: bigint;
totalDiscarded: bigint;
discardedDbSize: bigint;
filteredDbSize: bigint;
myDbSize: bigint;
}