mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-05-12 01:13:30 -04:00
10 lines
170 B
TypeScript
10 lines
170 B
TypeScript
/**
|
|
* Status response type.
|
|
*/
|
|
export type StatusResponse = {
|
|
clientVersionSupported: boolean;
|
|
serverVersion: string;
|
|
vaultRevision: number;
|
|
srpSalt: string;
|
|
}
|