mirror of
https://github.com/zadam/trilium.git
synced 2025-11-03 20:06:08 +01:00
13 lines
270 B
TypeScript
13 lines
270 B
TypeScript
|
|
export interface EntityChange {
|
||
|
|
id?: string;
|
||
|
|
entityName: string;
|
||
|
|
entityId: string;
|
||
|
|
hash: string;
|
||
|
|
utcDateChanged: string;
|
||
|
|
isSynced: boolean | 1 | 0;
|
||
|
|
isErased: boolean | 1 | 0;
|
||
|
|
componentId?: string | null;
|
||
|
|
changeId?: string | null;
|
||
|
|
instanceId?: string | null;
|
||
|
|
}
|