feat: download backup before changing password

This commit is contained in:
Baptiste Grob
2020-10-01 16:02:30 +02:00
parent 2acff87ffd
commit add0497e14
2 changed files with 7 additions and 4 deletions

View File

@@ -13,6 +13,7 @@ export interface Bridge {
onMajorDataChange(): void;
onInitialDataLoad(): void;
onSearch(text?: string): void;
downloadBackup(): void;
}
const KEYCHAIN_STORAGE_KEY = 'keychain';
@@ -45,4 +46,6 @@ export class BrowserBridge implements Bridge {
}
onSearch() {
}
downloadBackup() {
}
}