diff --git a/src/public/app/services/load_results.ts b/src/public/app/services/load_results.ts index 86ee7d4c8..9d4eb9b30 100644 --- a/src/public/app/services/load_results.ts +++ b/src/public/app/services/load_results.ts @@ -1,7 +1,12 @@ -import { NoteRow } from "../../../becca/entities/rows.js"; import { AttributeType } from "../entities/fattribute.js"; import { EntityChange } from "../server_types.js"; +// TODO: Deduplicate with server. + +interface NoteRow { + isDeleted?: boolean; +} + interface BranchRow { branchId: string; componentId: string;