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

pull/840/head
Elian Doran 2024-12-25 08:54:33 +07:00
parent 2e70aed490
commit 079265f5ca
No known key found for this signature in database
1 changed files with 6 additions and 1 deletions

@ -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;