feat(react/dialogs): port delete_notes

This commit is contained in:
Elian Doran
2025-08-05 18:05:41 +03:00
parent a4e6a964c9
commit 87d9ea06f3
13 changed files with 214 additions and 216 deletions

View File

@@ -1,3 +1,5 @@
import { AttributeRow } from "./rows.js";
export interface AppInfo {
appVersion: string;
dbVersion: number;
@@ -10,3 +12,8 @@ export interface AppInfo {
/** for timezone inference */
utcDateTime: string;
}
export interface DeleteNotesPreview {
noteIdsToBeDeleted: string[];
brokenRelations: AttributeRow[];
}