server-ts: Convert more classes, including entity_changes.js

This commit is contained in:
Elian Doran
2024-02-16 23:56:32 +02:00
parent cb14d4d8f9
commit e04bd5aaf0
10 changed files with 238 additions and 228 deletions

View 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;
}