mirror of
https://github.com/zadam/trilium.git
synced 2025-11-16 18:25:51 +01:00
12 lines
276 B
TypeScript
12 lines
276 B
TypeScript
|
|
export interface EntityChange {
|
||
|
|
id?: number | null;
|
||
|
|
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;
|
||
|
|
}
|