Files
aliasvault/shared/models/src/webapi/PasswordChangeInitiateResponse.ts
2025-06-11 21:52:21 +02:00

10 lines
208 B
TypeScript

/**
* Represents a password change initiate response.
*/
export type PasswordChangeInitiateResponse = {
salt: string;
serverEphemeral: string;
encryptionType: string;
encryptionSettings: string;
};