Skip to content

Commit

Permalink
fix(client/ts): type error regarding note rows
Browse files Browse the repository at this point in the history
  • Loading branch information
eliandoran committed Dec 25, 2024
1 parent 2e70aed commit 079265f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/public/app/services/load_results.ts
Original file line number Diff line number Diff line change
@@ -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;
Expand Down

0 comments on commit 079265f

Please sign in to comment.