fix(client/ts): type error regarding note rows

This commit is contained in:
Elian Doran 2024-12-25 08:54:33 +02:00
parent 2e70aed490
commit 079265f5ca
No known key found for this signature in database

View File

@ -1,7 +1,12 @@
import { NoteRow } from "../../../becca/entities/rows.js";
import { AttributeType } from "../entities/fattribute.js"; import { AttributeType } from "../entities/fattribute.js";
import { EntityChange } from "../server_types.js"; import { EntityChange } from "../server_types.js";
// TODO: Deduplicate with server.
interface NoteRow {
isDeleted?: boolean;
}
interface BranchRow { interface BranchRow {
branchId: string; branchId: string;
componentId: string; componentId: string;