mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-05-13 18:05:28 -04:00
17 lines
333 B
TypeScript
17 lines
333 B
TypeScript
/**
|
|
* Represents a delete account initiate response.
|
|
*/
|
|
export type DeleteAccountInitiateRequest = {
|
|
username: string;
|
|
};
|
|
|
|
/**
|
|
* Represents a delete account initiate response.
|
|
*/
|
|
export type DeleteAccountInitiateResponse = {
|
|
salt: string;
|
|
serverEphemeral: string;
|
|
encryptionType: string;
|
|
encryptionSettings: string;
|
|
};
|