feat(react/settings): port sync test

This commit is contained in:
Elian Doran
2025-08-15 11:30:48 +03:00
parent f62078d02b
commit 68086ec3f1
3 changed files with 43 additions and 1 deletions

View File

@@ -77,3 +77,11 @@ export interface AnonymizedDbResponse {
filePath: string;
fileName: string;
}
export type SyncTestResponse = {
success: true;
message: string;
} | {
success: false;
error: string;
};