more accurate stages of sync

This commit is contained in:
fyears
2021-11-06 23:31:49 +08:00
parent 659deb9830
commit bcca2b4446
2 changed files with 59 additions and 39 deletions
+8 -1
View File
@@ -31,7 +31,14 @@ type DecisionType =
| "mkdirplocal"
| "skip";
export type SyncStatusType = "idle" | "preparing" | "syncing";
export type SyncStatusType =
| "idle"
| "preparing"
| "getting_remote_meta"
| "getting_local_meta"
| "generating_plan"
| "syncing"
| "finish";
interface FileOrFolderMixedState {
key: string;