mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-05-13 09:55:33 -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;
|
|
};
|