refactor(client): deduplicate app info type

This commit is contained in:
Elian Doran
2025-08-03 16:22:54 +03:00
parent 8f99ce7d14
commit b645d21fcd
4 changed files with 17 additions and 11 deletions

View File

@@ -0,0 +1,12 @@
export interface AppInfo {
appVersion: string;
dbVersion: number;
nodeVersion: string;
syncVersion: number;
buildDate: string;
buildRevision: string;
dataDirectory: string;
clipperProtocolVersion: string;
/** for timezone inference */
utcDateTime: string;
}