mirror of
https://github.com/zadam/trilium.git
synced 2025-11-15 17:55:52 +01:00
server-ts: Convert more classes, including entity_changes.js
This commit is contained in:
12
src/services/entity_changes_interface.ts
Normal file
12
src/services/entity_changes_interface.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user