fix: download backup later in the change password process

This commit is contained in:
Baptiste Grob
2021-03-03 14:30:24 +01:00
parent a22a95e928
commit 9541886a2c
3 changed files with 7 additions and 3 deletions

View File

@@ -18,5 +18,5 @@ export interface Bridge {
onMajorDataChange(): void;
onInitialDataLoad(): void;
onSearch(text?: string): void;
downloadBackup(): void;
downloadBackup(): Promise<void>;
}