mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-03-28 11:33:47 -04:00
10 lines
208 B
TypeScript
10 lines
208 B
TypeScript
/**
|
|
* Represents a password change initiate response.
|
|
*/
|
|
export type PasswordChangeInitiateResponse = {
|
|
salt: string;
|
|
serverEphemeral: string;
|
|
encryptionType: string;
|
|
encryptionSettings: string;
|
|
};
|