1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-12 06:23:38 +00:00
This commit is contained in:
Bernd Schoolmann
2024-12-02 12:13:46 +01:00
parent df846a058d
commit 2f5d4435d8
2 changed files with 3 additions and 5 deletions

View File

@@ -1069,12 +1069,14 @@ export default class MainBackground {
);
this.processReloadService = new DefaultProcessReloadService(
this.pinService,
this.messagingService,
systemUtilsServiceReloadCallback,
this.vaultTimeoutSettingsService,
this.biometricStateService,
this.accountService,
this.logService,
this.platformUtilsService,
this.pinService,
);
// Other fields

View File

@@ -125,13 +125,9 @@ export declare namespace ipc {
}
export declare namespace epheremal_values {
export class EpheremalValueStoreWrapper {
/** Create a new epheremal value store. */
constructor()
/** Set a value in the store. */
set(key: string, value: string): void
/** Get a value from the store. */
get(key: string): string | null
/** Remove a value from the store. */
remove(key: string): void
}
}