1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-26 01:23:24 +00:00

Update libs/common/src/key-management/master-password/abstractions/master-password.service.abstraction.ts

Co-authored-by: Maciej Zieniuk <167752252+mzieniukbw@users.noreply.github.com>
This commit is contained in:
Bernd Schoolmann
2025-10-30 10:15:43 +01:00
committed by GitHub
parent af7ce59ddb
commit 15a7ab0589

View File

@@ -112,7 +112,7 @@ export abstract class MasterPasswordServiceAbstraction {
* @param userId The user ID.
* @throws If the user ID is missing.
*/
abstract userHasMasterPassword: (userId: UserId) => Promise<boolean>;
abstract userHasMasterPassword(userId: UserId): Promise<boolean>;
}
export abstract class InternalMasterPasswordServiceAbstraction extends MasterPasswordServiceAbstraction {