feat(react/settings): port integrity check

This commit is contained in:
Elian Doran
2025-08-14 22:40:54 +03:00
parent 96eb1be556
commit a04f6e3858
5 changed files with 44 additions and 57 deletions

View File

@@ -61,3 +61,9 @@ export interface RecentChangeRow {
export interface BulkActionAffectedNotes {
affectedNoteCount: number;
}
export interface DatabaseCheckIntegrityResponse {
results: {
integrity_check: string;
}[];
}