mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-05-12 09:23:42 -04:00
9 lines
171 B
TypeScript
9 lines
171 B
TypeScript
/**
|
|
* Represents a delete account request.
|
|
*/
|
|
export type DeleteAccountRequest = {
|
|
username: string;
|
|
clientPublicEphemeral: string;
|
|
clientSessionProof: string;
|
|
};
|