mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-03-18 14:49:08 -04:00
9 lines
151 B
TypeScript
9 lines
151 B
TypeScript
/**
|
|
* Status response type.
|
|
*/
|
|
export type StatusResponse = {
|
|
clientVersionSupported: boolean;
|
|
serverVersion: string;
|
|
vaultRevision: number;
|
|
}
|