Notes/src/services/entity_changes.ts

13 lines
270 B
TypeScript
Raw Normal View History

2024-02-16 21:16:35 +02:00
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;
}