From e09baeabb194656d91fcc1ebcab8cbf142216aa4 Mon Sep 17 00:00:00 2001 From: Bernd Schoolmann Date: Wed, 16 Jul 2025 15:36:44 +0200 Subject: [PATCH] Add newline --- .../types/master-password.types.ts | 24 ++++++++++--------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/libs/common/src/key-management/master-password/types/master-password.types.ts b/libs/common/src/key-management/master-password/types/master-password.types.ts index 54ce0a60612..a159bdf46b8 100644 --- a/libs/common/src/key-management/master-password/types/master-password.types.ts +++ b/libs/common/src/key-management/master-password/types/master-password.types.ts @@ -1,6 +1,8 @@ import { Opaque } from "type-fest"; -import { KdfConfig } from "@bitwarden/key-management"; + import { EncString } from "@bitwarden/common/platform/models/domain/enc-string"; +// eslint-disable-next-line no-restricted-imports +import { KdfConfig } from "@bitwarden/key-management"; /** * The Base64-encoded master password authentication hash, that is sent to the server for authentication. @@ -10,19 +12,19 @@ export type MasterPasswordSalt = Opaque; export type MasterKeyWrappedUserKey = Opaque; /** - * The data required to unlock the master password. + * The data required to unlock the master password. */ export type MasterPasswordUnlockData = { - salt: string; - kdf: KdfConfig; - masterKeyWrappedUserKey: MasterKeyWrappedUserKey; -} + salt: string; + kdf: KdfConfig; + masterKeyWrappedUserKey: MasterKeyWrappedUserKey; +}; /** - * The data required to unlock the master password. + * The data required to unlock the master password. */ export type MasterPasswordAuthenticationData = { - salt: string; - kdf: KdfConfig; - masterPasswordAuthenticationHash: MasterPasswordAuthenticationHash; -} \ No newline at end of file + salt: string; + kdf: KdfConfig; + masterPasswordAuthenticationHash: MasterPasswordAuthenticationHash; +};