Add progress display

This commit is contained in:
2024-07-28 23:02:58 +02:00
parent cad3ec6fd7
commit 81cc47efd0
8 changed files with 269 additions and 128 deletions
+6
View File
@@ -11,6 +11,12 @@ export interface Mural {
y: number;
}
export interface MuralStatus {
total: number;
good: number;
bad: number;
}
export interface LoadUnload {
load: () => Promise<void> | void;
unload: () => Promise<void> | void;