mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-29 11:02:28 +08:00
15 lines
347 B
TypeScript
15 lines
347 B
TypeScript
export interface EntityChange {
|
|
id?: number | null;
|
|
noteId?: string;
|
|
entityName: string;
|
|
entityId: string;
|
|
entity?: any;
|
|
positions?: Record<string, number>;
|
|
hash: string;
|
|
utcDateChanged?: string;
|
|
isSynced: boolean | 1 | 0;
|
|
isErased: boolean | 1 | 0;
|
|
componentId?: string | null;
|
|
changeId?: string | null;
|
|
instanceId?: string | null;
|
|
} |