mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 08:43:33 +00:00
Split jslib into multiple modules (#363)
* Split jslib into multiple modules
This commit is contained in:
10
common/src/models/request/updateKeyRequest.ts
Normal file
10
common/src/models/request/updateKeyRequest.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
import { CipherWithIdRequest } from './cipherWithIdRequest';
|
||||
import { FolderWithIdRequest } from './folderWithIdRequest';
|
||||
|
||||
export class UpdateKeyRequest {
|
||||
ciphers: CipherWithIdRequest[] = [];
|
||||
folders: FolderWithIdRequest[] = [];
|
||||
masterPasswordHash: string;
|
||||
privateKey: string;
|
||||
key: string;
|
||||
}
|
||||
Reference in New Issue
Block a user